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.
 
 
 
 

12 lines
419 B

create table customCategory (
id char(32) not null,
content mediumtext not null,
created datetime not null default CURRENT_TIMESTAMP,
primary key(id)
);
create table customCategoryAccess (
id char(32) not null,
ts datetime not null default CURRENT_TIMESTAMP,
foreign key(id) references customCategory(id) on delete cascade
);