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/20150608074328_create_layer...

15 lines
250 B

Sequel.migration do
up do
SequelRails.connection.run(%Q{
CREATE INDEX layers_parent_id_idx ON layers (parent_id)
})
end
down do
SequelRails.connection.run(%Q{
DROP INDEX IF EXISTS layers_parent_id_idx
})
end
end