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/20150616131813_add_error_co...

12 lines
183 B

class AddErrorCodeToGeocodings < Sequel::Migration
def up
add_column :geocodings, :error_code, :integer
end
def down
drop_column :geocodings, :error_code
end
end