Files
flalingo/src-tauri/migrations/0001_path_node_table.sql

9 lines
146 B
SQL

-- migrate:up
CREATE TABLE PathNode (
id integer primary key,
title text,
description text
);
-- migrate:down
-- DROP TABLE PathNode;