Created
April 2, 2025 23:08
-
-
Save modster/0392c3712e128501638bea4c1e828ff1 to your computer and use it in GitHub Desktop.
SQL file to create db and table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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