From a0b0c7528d2b8fabb76b2246a15004bc89239cf0 Mon Sep 17 00:00:00 2001 From: Trevor Rosen Date: Tue, 6 Mar 2012 11:08:59 -0600 Subject: [PATCH] Somehow migration file is new? --- data/sql/migrate/20111203000000_inet_columns.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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