mirror of
https://github.com/run-llama/study-llama.git
synced 2026-07-01 20:54:01 -04:00
7 lines
158 B
SQL
7 lines
158 B
SQL
-- Files table
|
|
CREATE TABLE files (
|
|
id SERIAL PRIMARY KEY,
|
|
username TEXT NOT NULL,
|
|
file_name TEXT NOT NULL,
|
|
file_category TEXT DEFAULT NULL
|
|
); |