You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

init.sql 309 B

2 years ago
123456789101112
  1. create table MapServer
  2. (
  3. id integer primary key autoincrement,
  4. catalog varchar(32) not null,
  5. version varchar(32) not null,
  6. value text not null,
  7. description varchar(255),
  8. date_created integer default (strftime('%s', 'now')) not null
  9. );
  10. create index catagory_pidx on MapServer (catalog, version);