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/20110407105539_add_invite_t...

14 lines
270 B

class AddInviteTokenToUsersMigration < Sequel::Migration
def up
add_column :users, :invite_token, String
add_column :users, :invite_token_date, Date
end
def down
drop_column :users, :invite_token
drop_column :users, :invite_token_date
end
end