diff --git a/data/sql/migrate/20111203000000_inet_columns.rb b/data/sql/migrate/20111203000000_inet_columns.rb index cb8d140912..6e86654bc5 100755 --- a/data/sql/migrate/20111203000000_inet_columns.rb +++ b/data/sql/migrate/20111203000000_inet_columns.rb @@ -1,13 +1,13 @@ class InetColumns < ActiveRecord::Migration - def self.up - change_column :hosts, :address, 'INET using address::INET' - remove_column :hosts, :address6 - end + def self.up + change_column :hosts, :address, 'INET using address::INET' + remove_column :hosts, :address6 + end - def self.down - change_column :hosts, :address, :text - add_column :hosts, :address6, :text - end + def self.down + change_column :hosts, :address, :text + add_column :hosts, :address6, :text + end end