cartodb/db/migrate/20120919095432_add_table_id_to_user_tables.rb

8 lines
118 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
change do
alter_table :user_tables do
add_column :table_id, Integer
end
end
end