6 lines
139 B
Ruby
6 lines
139 B
Ruby
class AddAutoLabelToLandingHosts < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :landing_hosts, :auto_label, :string
|
|
end
|
|
end
|