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_new.sql 525 B

2 years ago
1234567891011121314151617181920212223
  1. create table Tag
  2. (
  3. id integer primary key autoincrement,
  4. parent_id integer,
  5. name varchar(127) not null,
  6. description varchar(127),
  7. sces blob
  8. );
  9. create table Scenario
  10. (
  11. id integer primary key autoincrement,
  12. sid varchar(32) not null,
  13. name varchar(127) not null,
  14. pic varchar(255),
  15. map_feature varchar(127),
  16. method varchar(255),
  17. standard varchar(255),
  18. others varchar(255),
  19. failure varchar(255),
  20. tags blob,
  21. date_created integer default (strftime('%s', 'now')) not null
  22. );