added ";" to sql statements, so no further error is thrown when applying migrations

This commit is contained in:
Nico
2025-09-15 22:47:39 +02:00
parent 8e876d7206
commit 7d7815a4bd
2 changed files with 6 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ CREATE TABLE PathNode (
id integer primary key,
title text,
description text
)
);
-- migrate:down
-- migrate:down
-- DROP TABLE PathNode;

View File

@@ -3,6 +3,7 @@ create table NodeExercise (
id integer primary key,
ex_type text,
content text
)
);
-- migrate:down
-- migrate:down
-- DROP TABLE NodeExercise;