We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7da6d30 commit c79fecdCopy full SHA for c79fecd
migrations/000_init.sql
@@ -8,7 +8,7 @@ CREATE TABLE users (
8
CREATE TABLE projects (
9
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
10
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
11
- name TEXT NOT NULL DEFAULT 'Untitled',
+ name TEXT NOT NULL,
12
timeline_state JSONB,
13
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
14
);
0 commit comments