As the title asks, Where in the database does Umbraco store its version information?
Asked
Active
Viewed 4,430 times
3 Answers
12
SELECT * FROM umbracoMigration
On my Umbraco gives me:
id name version createDate
1 Umbraco 7.4.1 2016-03-21 09:06:05.770

Ian Grainger
- 5,148
- 3
- 46
- 72
-
1This is the actually answer to the question. – Ayo Adesina Nov 29 '18 at 14:52
-
This only appears when you've done a migration though, I believe.. ? – Ian Grainger Nov 29 '18 at 14:54
-
Yes that is correct. So if you want to check what version your current version of umbraco is look here and you will see the latest entry – Ayo Adesina Nov 29 '18 at 21:41
-
But if you've just installed Umbraco, and not yet upgraded, it will be empty, right? :( – Ian Grainger Nov 30 '18 at 09:45
-
Apparently not, mine includes the version that was installed first. – Andy Feb 27 '19 at 14:00
4
Its stored in the web.config file (umbracoConfigurationStatus setting) not in the database.
Richard

Richard
- 88
- 1
-
7How then, does Umbraco know when an upgrade of the DB Schema is required? – Greg B Nov 22 '10 at 13:33
-
1
0
Compares the version number in the web.config with the version being installed?

ProNotion
- 3,662
- 3
- 21
- 30