8 lines
123 B
SQL
8 lines
123 B
SQL
-- migrate:up
|
|
create table NodeExercise (
|
|
id integer primary key,
|
|
ex_type text,
|
|
content text
|
|
)
|
|
|
|
-- migrate:down |