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/20131031175232_default_valu...

16 lines
307 B

Sequel.migration do
up do
alter_table :geocodings do
set_column_default :processed_rows, 0
set_column_default :total_rows, 0
end
end
down do
alter_table :geocodings do
set_column_default :processed_rows, nil
set_column_default :total_rows, nil
end
end
end