migrations.py 279 B

12345678910
  1. versions = [
  2. (
  3. '1',
  4. [
  5. "create table config(name text primary key, value text)",
  6. "insert into config (name, value) values ('version', '1')",
  7. 'create table "station"(remote_id text, indice int, status int)'
  8. ]
  9. ),
  10. ]