12 lines
231 B
Ruby
12 lines
231 B
Ruby
|
class AddUserToTask < ActiveRecord::Migration
|
||
|
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
|