Skip to content

Instantly share code, notes, and snippets.

@modster
Created April 2, 2025 23:08
Show Gist options
  • Save modster/0392c3712e128501638bea4c1e828ff1 to your computer and use it in GitHub Desktop.
Save modster/0392c3712e128501638bea4c1e828ff1 to your computer and use it in GitHub Desktop.
SQL file to create db and table
CREATE TABLE articles (
id TEXT PRIMARY KEY,
created_at TEXT DEFAULT (datetime('now')),
title TEXT,
content TEXT
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment