cartodb-4.42/db/migrate/20131120112629_create_automatic_geocoders.rb
2024-04-06 05:25:13 +00:00

21 lines
393 B
Ruby

Sequel.migration do
up do
create_table :automatic_geocodings do
primary_key :id
Integer :table_id
Text :state
DateTime :run_at
DateTime :created_at, null: false
DateTime :updated_at, null: false
Integer :interval
Integer :retried_times
end
end
down do
drop_table :automatic_geocodings
end
end