about summary refs log tree commit diff
path: root/supabase/migrations/20240525164247_create_file_table.sql
blob: 738a16e494ae22b57d837e9790824a0f0c2b3cf2 (plain) (blame)
1
2
3
4
5
6
7
CREATE TABLE IF NOT EXISTS private."file" (
	id SERIAL PRIMARY KEY,
	user_id UUID NOT NULL,
	absolute_path VARCHAR(4096) NOT NULL,
	contents TEXT,
	timestamp TIMESTAMPTZ NOT NULL
);