update migrations

This commit is contained in:
Nico
2025-09-17 21:53:27 +02:00
parent 7d7815a4bd
commit 3252d45409
9 changed files with 28 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
CREATE TABLE node (
id integer primary key,
title text,
description text,
pathId integer references path(id)
);