6 lines
146 B
Ruby
6 lines
146 B
Ruby
|
class AddTchapHsToZones < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :zones, :tchap_hs, :string, array: true, default: []
|
||
|
end
|
||
|
end
|