1
0

group.sql 315 B

12345678910
  1. create table if not exists devcloud.`group`
  2. (
  3. id int not null
  4. primary key,
  5. name varchar(23) charset utf8 not null,
  6. namespace int not null,
  7. share_link varchar(63) not null,
  8. type varchar(15) charset utf8 null
  9. );