cartodb-4.42/db/migrate/20110720135459_remove_subdomain_from_users.rb

15 lines
270 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
class RemoveSubdomainFromUsersMigration < Sequel::Migration
def up
drop_column :users, :subdomain
end
def down
add_column :users, :subdomain, 'character varying'
alter_table(:users) do
add_index [:subdomain], :unique => true
end
end
end