diff --git a/db/migrate/080_add_visible_to_profiles.rb b/db/migrate/080_add_visible_to_profiles.rb deleted file mode 100644 index 68ecc1d..0000000 --- a/db/migrate/080_add_visible_to_profiles.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddVisibleToProfiles < ActiveRecord::Migration - def self.up - add_column :profiles, :visible, :boolean, :default => true - end - - def self.down - remove_column :profiles, :visible - end -end diff --git a/db/migrate/081_add_visible_to_profiles.rb b/db/migrate/081_add_visible_to_profiles.rb new file mode 100644 index 0000000..68ecc1d --- /dev/null +++ b/db/migrate/081_add_visible_to_profiles.rb @@ -0,0 +1,9 @@ +class AddVisibleToProfiles < ActiveRecord::Migration + def self.up + add_column :profiles, :visible, :boolean, :default => true + end + + def self.down + remove_column :profiles, :visible + end +end -- libgit2 0.21.2