Files
flalingo/src-tauri/migrations/0003_exercise_table.up.sql
2025-09-17 21:53:27 +02:00

6 lines
129 B
SQL

create table exercise (
id integer primary key,
ex_type text,
content text,
nodeId integer references node(id)
);