File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ jobs:
188188 id INTEGER PRIMARY KEY AUTOINCREMENT,
189189 username TEXT UNIQUE NOT NULL,
190190 email TEXT UNIQUE NOT NULL,
191- created_at TEXT DEFAULT CURRENT_TIMESTAMP
191+ created_at TEXT
192192 );
193193
194194 CREATE TABLE posts (
@@ -197,7 +197,7 @@ jobs:
197197 title TEXT NOT NULL,
198198 content TEXT,
199199 published_at TEXT,
200- created_at TEXT DEFAULT CURRENT_TIMESTAMP
200+ created_at TEXT
201201 );
202202
203203 CREATE INDEX idx_posts_user_id ON posts(user_id);
@@ -210,7 +210,7 @@ jobs:
210210 CREATE TABLE users (
211211 id INTEGER PRIMARY KEY AUTOINCREMENT,
212212 username TEXT UNIQUE NOT NULL,
213- created_at TEXT DEFAULT CURRENT_TIMESTAMP
213+ created_at TEXT
214214 );
215215 EOF
216216
Original file line number Diff line number Diff line change 11This is a GitHub Action project implemented in TypeScript.
22
3+
4+
35## General Rules
46
5- *
7+ * Write comments to describe what is not obvious in the code. Describing the "why" is a recommended practice.
8+ * Keep README.md up to date.
69
710## Before commit
811
You can’t perform that action at this time.
0 commit comments