mirror of
https://github.com/run-llama/study-llama.git
synced 2026-07-19 23:13:38 -04:00
7 lines
172 B
SQL
7 lines
172 B
SQL
-- Files table
|
|
CREATE TABLE IF NOT EXISTS files (
|
|
id SERIAL PRIMARY KEY,
|
|
username TEXT NOT NULL,
|
|
file_name TEXT NOT NULL,
|
|
file_category TEXT DEFAULT NULL
|
|
); |