scinote-web/db/migrate/20170207100731_add_state_to_tasks.rb
2017-06-30 10:23:28 +02:00

19 lines
410 B
Ruby

class AddStateToTasks < ActiveRecord::Migration[4.2]
def up
add_column :my_modules,
:state,
:integer,
limit: 1,
default: 0
add_column :my_modules,
:completed_on,
:datetime,
null: true
end
def down
remove_column :my_modules, :state
remove_column :my_modules, :completed_on
end
end