aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/db/server-pg-migrations/20260611222503_make_user-id_an_uuid.sql
blob: d31c23e2891ed218b243e306c483f35666457c99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
-- Add migration script here

ALTER TABLE records
DROP COLUMN IF EXISTS user_id;
ALTER TABLE records
ADD COLUMN user_id UUID NOT NULL;

ALTER TABLE store
DROP COLUMN IF EXISTS user_id;
ALTER TABLE store
ADD COLUMN user_id UUID NOT NULL;