| 12345678910111213141516171819202122 |
- versions = [
- (
- '1',
- [
- "create table config(name text primary key, value text)",
- "insert into config (name, value) values ('version', '1')",
- 'create table "station"(remote_id text, indice int, status int)'
- ],
- ),
- (
- '2',
- [
- 'alter table "file" add column "priority" int not null default 0',
- ]
- ),
- (
- '3',
- [
- 'alter table "file" add column "in_server" int not null default 0' ,
- ]
- )
- ]
|