lume/src-tauri/migrations/20230521092300_add_block_model.sql
2023-05-22 14:04:35 +07:00

10 lines
260 B
SQL

-- Add migration script here
CREATE TABLE
blocks (
id INTEGER NOT NULL PRIMARY KEY,
account_id INTEGER NOT NULL,
kind INTEGER NOT NULL,
title TEXT NOT NULL,
content TEXT NOT NULL,
FOREIGN KEY (account_id) REFERENCES accounts (id)
);