cartodb-4.42/db/migrate/20120720160358_add_map_id_to_tables.rb

12 lines
175 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
class AddMapIdToTablesMigration < Sequel::Migration
def up
add_column :user_tables, :map_id, :bigint
end
def down
drop_column :user_tables, :map_id
end
end