You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20190822115827_chage_user_t...

17 lines
286 B

require 'carto/db/migration_helper'
include Carto::Db::MigrationHelper
migration(
Proc.new do
alter_table :user_tables do
set_column_type :table_id, :oid
end
end,
Proc.new do
alter_table :user_tables do
set_column_type :table_id, Integer
end
end
)