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/20150813102733_add_visualiz...

14 lines
300 B

Sequel.migration do
up do
SequelRails.connection.run(%Q{
CREATE INDEX synchronizations_visualization_id_idx ON synchronizations (visualization_id)
})
end
down do
SequelRails.connection.run(%Q{
DROP INDEX IF EXISTS synchronizations_visualization_id_idx
})
end
end