sft/migrations/4_rev4.sql
HeshamTB 5ee2a03280
migrations: complete migrations flow
- 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>
2026-03-13 02:21:54 +03:00

9 lines
233 B
SQL

CREATE TABLE IF NOT EXISTS _sft_migtest_table4 (
id integer PRIMARY KEY
);
INSERT INTO _sft_migtest_table4 (id) VALUES (42);
INSERT INTO _sft_db (db_rev, sft_ver, applied_at) VALUES (4, "0.0.1-pre-alpha1", CURRENT_TIMESTAMP);