mirror of
https://github.com/syumai/workers.git
synced 2025-03-11 09:49:12 +00:00
9 lines
274 B
SQL
9 lines
274 B
SQL
-- Migration number: 0000 2023-01-09T14:48:53.705Z
|
|
CREATE TABLE articles (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
title TEXT NOT NULL,
|
|
body TEXT NOT NULL,
|
|
created_at INTEGER NOT NULL
|
|
);
|
|
CREATE INDEX idx_articles_on_created_at ON articles (created_at DESC);
|