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

6 lines
127 B
SQL

CREATE TABLE node (
id integer primary key,
title text,
description text,
pathId integer references path(id)
);