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/20130605102802_add_period_e...

15 lines
309 B

class AddPeriodEndDateToUsers < Sequel::Migration
def up
alter_table :users do
add_column :period_end_date, DateTime
set_column_default :period_end_date, Sequel.function(:now)
end
end #up
def down
alter_table :users do
drop_column :period_end_date
end
end #down
end