cartodb/db/migrate/20140414160500_add_used_credits_to_geocodings.rb

8 lines
121 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
change do
alter_table :geocodings do
add_column :used_credits, :bigint
end
end
end