summaryrefslogtreecommitdiff
path: root/sql/0002_migration.sql
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-11-05 21:25:31 +0100
committerxengineering <me@xengineering.eu>2022-11-07 21:17:44 +0100
commit1d6b45bebea66391a2a535a3bb328a5732aaa75d (patch)
tree12faa62d8d8574ad8c94f4a7c9ff206c34456430 /sql/0002_migration.sql
downloadceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar
ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar.zst
ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.zip
Add existing work
Diffstat (limited to 'sql/0002_migration.sql')
-rw-r--r--sql/0002_migration.sql25
1 files changed, 25 insertions, 0 deletions
diff --git a/sql/0002_migration.sql b/sql/0002_migration.sql
new file mode 100644
index 0000000..7c99616
--- /dev/null
+++ b/sql/0002_migration.sql
@@ -0,0 +1,25 @@
+
+--------------------------------------------------------------------------------
+
+-- 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';