6 lines
162 B
6 lines
162 B
6 years ago
|
class AddQuotesForGraduationTopics < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :graduation_topics, :quotes, :integer, :default => 0
|
||
|
end
|
||
|
end
|