6 lines
129 B
SQL
6 lines
129 B
SQL
create table exercise (
|
|
id integer primary key,
|
|
ex_type text,
|
|
content text,
|
|
nodeId integer references node(id)
|
|
); |