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/20150401160252_add_index_to...

10 lines
160 B

Sequel.migration do
up do
SequelRails.connection.run(%Q{
CREATE INDEX visualizations_parent_id_idx ON visualizations (parent_id)
})
end
end