Skip to content

Commit c79fecd

Browse files
committed
tighten it
1 parent 7da6d30 commit c79fecd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

migrations/000_init.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CREATE TABLE users (
88
CREATE TABLE projects (
99
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
1010
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
11-
name TEXT NOT NULL DEFAULT 'Untitled',
11+
name TEXT NOT NULL,
1212
timeline_state JSONB,
1313
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
1414
);

0 commit comments

Comments
 (0)