foodsoft/db/migrate/20181205000000_add_user_to_task.rb
2020-09-05 14:40:11 +02:00

11 lines
236 B
Ruby

class AddUserToTask < ActiveRecord::Migration[4.2]
def change
add_column :tasks, :created_by_user_id, :integer
reversible do |dir|
dir.up do
change_column :tasks, :description, :text
end
end
end
end