Files
vctp2/db/migrations/20240407203525_init.up.txt
2024-09-12 08:57:44 +10:00

8 lines
154 B
Plaintext

CREATE TABLE IF NOT EXISTS authors (
id INTEGER PRIMARY KEY,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
name TEXT NOT NULL,
bio TEXT
);