6 lines
170 B
Ruby
6 lines
170 B
Ruby
class AlterTableSubprincipleitems < ActiveRecord::Migration[7.1]
|
|
def change
|
|
change_column_default :subprincipleitems, :affirmative, from: nil, to: false
|
|
end
|
|
end
|