7 lines
217 B
7 lines
217 B
6 years ago
|
class ModifyQuotesForGtopicBanks < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
6 years ago
|
GtopicBank.where("quotes is null").update_all(:quotes => 0)
|
||
6 years ago
|
change_column :gtopic_banks, :quotes, :integer, :default => 0
|
||
|
end
|
||
|
end
|