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/20200907111953_drop_automat...

23 lines
611 B

require 'carto/db/migration_helper'
include Carto::Db::MigrationHelper
migration(
Proc.new do
drop_table :automatic_geocodings
drop_column :geocodings, :automatic_geocoding_id
end,
Proc.new do
create_table :automatic_geocodings do
Uuid :id, primary_key: true, default: Sequel.lit('uuid_generate_v4()')
Integer :table_id
Text :state
DateTime :created_at, null: false
DateTime :updated_at, null: false
DateTime :ran_at
Integer :retried_times
end
add_column :geocodings, :automatic_geocoding_id, :integer
end
)