From fefa367242de85f46250fb8da46dbae3f5545836 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 17 Jun 2021 00:18:34 +0200 Subject: Add migrations directory This commit adds the directory core/db/migrations/ which contains all migrations that were applied to the database since the first release. --- core/db/migrations/5.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 core/db/migrations/5.sql (limited to 'core/db/migrations/5.sql') diff --git a/core/db/migrations/5.sql b/core/db/migrations/5.sql new file mode 100644 index 0000000..a3c8e5a --- /dev/null +++ b/core/db/migrations/5.sql @@ -0,0 +1,3 @@ +CREATE TABLE `migration` (`schema_version` smallint(4) NOT NULL) + ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +INSERT INTO `migration` (`schema_version`) VALUES (5); -- cgit v1.2.3