6 lines
142 B
Ruby
6 lines
142 B
Ruby
|
class AddQuotesToHomework < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :homework_commons, :quotes, :integer, :default => 0
|
||
|
end
|
||
|
end
|