10 lines
165 B
Ruby
Executable File
10 lines
165 B
Ruby
Executable File
class AddScopeToHosts < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :hosts, :scope, :text
|
|
end
|
|
|
|
def self.down
|
|
remove_column :hosts, :scope
|
|
end
|
|
end
|