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.

config.sql 803 B

2 years ago
12345678910111213141516171819202122232425262728
  1. create table GlobalConfig
  2. (
  3. id integer primary key,
  4. version varchar(127) not null,
  5. config text not null,
  6. date_updated integer default (strftime('%s', 'now')) not null
  7. );
  8. create table Scenario
  9. (
  10. id varchar(127) primary key,
  11. common text not null, -- InsFrequency, EnableLocalizer, Description
  12. map text not null, -- Gaussian settings and VTD/HD map settings
  13. error_injection text not null, -- ErrorModel
  14. sensor_error_injection text not null, -- SensorErrorModel
  15. channels text not null, -- ChannelNames
  16. verbose text not null, -- Verbose
  17. others text,
  18. date_updated integer default (strftime('%s', 'now')) not null
  19. );
  20. create table Template
  21. (
  22. name varchar(127) not null,
  23. template text not null
  24. );
  25. -- For other modules, just hard code in the UI tool