11 lines
274 B
SQL
11 lines
274 B
SQL
-- Add migration script here
|
|
|
|
CREATE TABLE IF NOT EXISTS projects (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
name varchar not null,
|
|
description varchar default null,
|
|
user_id varchar not null,
|
|
created_at timestamp not null,
|
|
updated_at timestamp not null
|
|
);
|