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

12 lines
175 B
Ruby

class AddMapIdToTablesMigration < Sequel::Migration
def up
add_column :user_tables, :map_id, :bigint
end
def down
drop_column :user_tables, :map_id
end
end