cartodb-4.42/db/migrate/20120919095432_add_table_id_to_user_tables.rb

8 lines
118 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
change do
alter_table :user_tables do
add_column :table_id, Integer
end
end
end