summaryrefslogtreecommitdiff
path: root/sql/0002_migration.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/0002_migration.sql')
-rw-r--r--sql/0002_migration.sql25
1 files changed, 0 insertions, 25 deletions
diff --git a/sql/0002_migration.sql b/sql/0002_migration.sql
deleted file mode 100644
index 7c99616..0000000
--- a/sql/0002_migration.sql
+++ /dev/null
@@ -1,25 +0,0 @@
-
---------------------------------------------------------------------------------
-
--- This migration creates the initial version of the database layout.
-
--- Run this command as Linux user `ceres` with this command:
--- `mariadb < 0002_migration.sql`.
-
--- set database for this script
-USE ceres;
-
--- create recipe table
-CREATE TABLE IF NOT EXISTS recipes (
- id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
- title varchar(80) NOT NULL DEFAULT '(no title)',
- upstream_url varchar(200) NOT NULL DEFAULT '',
- description_markdown text NOT NULL DEFAULT ''
-);
-
--- update database schema version
-UPDATE meta
-SET
- value='2'
-WHERE
- identifier='version';