4 lines
103 B
SQL
4 lines
103 B
SQL
CREATE TABLE migrate_version(version INT PRIMARY KEY);
|
|
INSERT INTO migrate_version(version)
|
|
VALUES(0);
|