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/20160824084904_add_state_id...

16 lines
380 B

Sequel.migration do
no_transaction # indexes need to be created outside of the transaction
up do
SequelRails.connection.run %{
CREATE INDEX CONCURRENTLY "visualizations_state_id_index" ON "visualizations" ("state_id");
}
end
down do
SequelRails.connection.run %{
DROP INDEX CONCURRENTLY IF EXISTS "visualizations_state_id_index";
}
end
end