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/20150223213800_scrollwheelt...

14 lines
272 B

Sequel.migration do
up do
SequelRails.connection.run(%Q{
ALTER TABLE maps ALTER COLUMN scrollwheel SET DEFAULT false;
})
end
down do
SequelRails.connection.run(%Q{
ALTER TABLE maps ALTER COLUMN scrollwheel SET DEFAULT true;
})
end
end