update flash card, test

This commit is contained in:
2026-04-15 00:41:02 +07:00
parent 4bc39225ab
commit 088c555515
32 changed files with 1988 additions and 415 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE test_category (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL, -- "TOEIC", "IELTS Academic", "HSK 1"...
slug VARCHAR(100) UNIQUE -- "toeic", "ielts", "hsk-1"
);
ALTER TABLE test ADD COLUMN category_id INT REFERENCES test_category(id);