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/20140303120018_add_index_on...

10 lines
244 B

Sequel.migration do
up do
SequelRails.connection.run("CREATE INDEX geocodings_user_id_created_at ON geocodings(user_id, created_at)")
end
down do
SequelRails.connection.run("DROP INDEX geocodings_user_id_created_at")
end
end