- create and drop tables or exec any sql in order
- important to add the last line in each sql file
Signed-off-by: HeshamTB <hishaminv@gmail.com>
11 lines
235 B
SQL
11 lines
235 B
SQL
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS _sft_migtest_table2 (
|
|
id integer PRIMARY KEY
|
|
);
|
|
|
|
INSERT INTO _sft_migtest_table2 (id) VALUES (42);
|
|
|
|
INSERT INTO _sft_db (db_rev, sft_ver, applied_at) VALUES (2, "0.0.1-pre-alpha1", CURRENT_TIMESTAMP);
|