cartodb/db/migrate/20120919095432_add_table_id_to_user_tables.rb
2020-06-15 10:58:47 +08:00

8 lines
118 B
Ruby

Sequel.migration do
change do
alter_table :user_tables do
add_column :table_id, Integer
end
end
end