Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where in the database does Umbraco store its version information?

Tags:

umbraco

As the title asks, Where in the database does Umbraco store its version information?

like image 587
Greg B Avatar asked Nov 22 '10 12:11

Greg B


People also ask

Where is umbraco data stored?

Where are Umbraco Cloud data centers located? Umbraco offers the ability to host in EU West (NL) and US East (Virginia) using Microsoft Azure as a hosting provider.

What database does umbraco use?

Umbraco is primarily written in C#, stores data in a relational database (commonly Microsoft SQL Server) and works on Microsoft IIS.


2 Answers

SELECT * FROM umbracoMigration

On my Umbraco gives me:

id  name    version createDate
1   Umbraco 7.4.1   2016-03-21 09:06:05.770
like image 110
Ian Grainger Avatar answered Sep 28 '22 18:09

Ian Grainger


Its stored in the web.config file (umbracoConfigurationStatus setting) not in the database.

Richard

like image 36
Richard Avatar answered Sep 28 '22 17:09

Richard