aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorMarc Florisson2012-08-30 16:48:13 +0200
committerMarc Florisson2012-08-30 16:48:13 +0200
commit3703143f2b77bc4e894dc3e12d56289b01fa0a82 (patch)
tree5bf3494d0e3c5cd21bae2d770171abe4158968c6 /db
parent1738789aebd17c0758d9757b1708f20b20ce8c7e (diff)
downloadchouette-core-3703143f2b77bc4e894dc3e12d56289b01fa0a82.tar.bz2
fix migration to user
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20120830095442_add_invitable_to_user.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20120830095442_add_invitable_to_user.rb b/db/migrate/20120830095442_add_invitable_to_user.rb
index 33720cb95..a4e72034c 100644
--- a/db/migrate/20120830095442_add_invitable_to_user.rb
+++ b/db/migrate/20120830095442_add_invitable_to_user.rb
@@ -13,6 +13,6 @@ class AddInvitableToUser < ActiveRecord::Migration
# Allow null encrypted_password
change_column :users, :encrypted_password, :string, :null => true
# Allow null password_salt (add it if you are using Devise's encryptable module)
- change_column :users, :password_salt, :string, :null => true
+ #change_column :users, :password_salt, :string, :null => true
end
end