update migrations
This commit is contained in:
12
src-tauri/migrations/0001_path_table.up.sql
Normal file
12
src-tauri/migrations/0001_path_table.up.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE TABLE path (
|
||||
id integer primary key,
|
||||
title text,
|
||||
description text,
|
||||
versions text
|
||||
);
|
||||
|
||||
CREATE TABLE pathVersions (
|
||||
pathId integer references path(id),
|
||||
versionNumber string,
|
||||
primary key (pathId, versionNumber)
|
||||
);
|
||||
Reference in New Issue
Block a user