You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20151016130937_add_uuid_to_...

26 lines
744 B

Sequel.migration do
up do
SequelRails.connection.run(%{
ALTER TABLE shared_entities DROP CONSTRAINT shared_entities_pkey;
})
SequelRails.connection.run(%{
ALTER TABLE shared_entities ADD COLUMN id uuid NOT NULL default uuid_generate_v4();
})
SequelRails.connection.run(%{
ALTER TABLE shared_entities ADD PRIMARY KEY (id);
})
end
down do
SequelRails.connection.run(%{
ALTER TABLE shared_entities DROP CONSTRAINT shared_entities_pkey;
})
SequelRails.connection.run(%{
ALTER TABLE shared_entities ADD PRIMARY KEY (recipient_id, entity_id);
})
SequelRails.connection.run(%{
ALTER TABLE shared_entities DROP COLUMN id;
})
end
end