diff options
Diffstat (limited to 'database.sql')
-rw-r--r-- | database.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/database.sql b/database.sql index 3f77a3b..ae61034 100644 --- a/database.sql +++ b/database.sql @@ -1,4 +1,11 @@ -- ============================================================================= +-- Internal information table for migrations +-- ============================================================================= +CREATE TABLE `migration` (`schema_version` smallint(4) NOT NULL) + ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +INSERT INTO `migration` (`schema_version`) VALUES (5); + +-- ============================================================================= -- Table structure for page items -- ============================================================================= CREATE TABLE `page` ( |