1 2 3 4 5 6-- This file should undo anything in `up.sql` ALTER TABLE user_roles DROP CONSTRAINT user_roles_pkey; ALTER TABLE user_roles ADD PRIMARY KEY (id);
1 2 3 4 5 6
-- This file should undo anything in `up.sql` ALTER TABLE user_roles DROP CONSTRAINT user_roles_pkey; ALTER TABLE user_roles ADD PRIMARY KEY (id);