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

12345678910111213141516171819
  1. create table sample_system_info
  2. (
  3. id varchar2(32) not null,
  4. conf_type varchar2(20) not null,
  5. json_str varchar2(2000) not null,
  6. update_time date not null,
  7. user_id varchar2(32) not null,
  8. ziped number(1, 0) not null
  9. );
  10. create table sample_lock
  11. (
  12. id varchar2(32) not null,
  13. insert_time date not null,
  14. expire_time date not null,
  15. node varchar2(25) not null,
  16. running number(1,0) not null,
  17. constraint sample_lock primary key (id)
  18. );