mirror of
https://github.com/go-shiori/shiori.git
synced 2025-10-27 22:47:35 +08:00
* feat: new migration system * use newFuncMigration * database version -> database schema version * column name * use path instead of filepath for goembed * simplified migrations, added backwards compatible migrations
5 lines
172 B
SQL
5 lines
172 B
SQL
CREATE TABLE IF NOT EXISTS shiori_system(
|
|
database_schema_version TEXT NOT NULL DEFAULT '0.0.0'
|
|
);
|
|
|
|
INSERT INTO shiori_system(database_schema_version) VALUES('0.0.0');
|