cartodb-4.42/db/migrate/20120720160358_add_map_id_to_tables.rb
2024-04-06 05:25:13 +00: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