blob: 7c996160f4a7432fe4bd06f72eedf482970e813b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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';
|