mirror of
https://github.com/ChronosX88/yat-server.git
synced 2024-11-09 16:51:01 +00:00
8 lines
228 B
MySQL
8 lines
228 B
MySQL
|
-- Your SQL goes here
|
||
|
create table if not exists lists (
|
||
|
id integer primary key,
|
||
|
user_id integer not null,
|
||
|
name text not null,
|
||
|
description text,
|
||
|
foreign key (user_id) references users(id) on delete cascade
|
||
|
);
|