9 lines
152 B
SQL
9 lines
152 B
SQL
-- migrate:up
|
|
create table NodeExercise (
|
|
id integer primary key,
|
|
ex_type text,
|
|
content text
|
|
);
|
|
|
|
-- migrate:down
|
|
-- DROP TABLE NodeExercise; |