rule.sql 314 B

12345678910
  1. create table rule
  2. (
  3. id INTEGER PRIMARY KEY AUTOINCREMENT,
  4. user_id int,
  5. name varchar(255) default '' not null,
  6. value json not null,
  7. action int default 0 not null,
  8. params varchar(255) default '' not null,
  9. sort int default 0 not null
  10. )