8 lines
190 B
8 lines
190 B
3 years ago
|
class AddHasOtherClientGroupField < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
change_table :schemes, bulk: true do |t|
|
||
|
t.column :has_other_client_group, :integer
|
||
|
end
|
||
|
end
|
||
|
end
|