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/20110628112715_add_subdomai...

16 lines
264 B

class AddSubdomainsMigration < Sequel::Migration
def up
add_column :users, :subdomain, 'character varying'
alter_table(:users) do
add_index [:subdomain], :unique => true
end
end
def down
drop_column :users, :subdomain
end
end