6 lines
159 B
Ruby
6 lines
159 B
Ruby
|
class UpdateHomeworkattachDescription < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_column :homework_attaches, :description, :text, default: nil
|
||
|
end
|
||
|
end
|