diff --git a/db/migrate/034_adds_password_type_to_users.rb b/db/migrate/034_adds_password_type_to_users.rb new file mode 100644 index 0000000..3f85fdb --- /dev/null +++ b/db/migrate/034_adds_password_type_to_users.rb @@ -0,0 +1,9 @@ +class AddsPasswordTypeToUsers < ActiveRecord::Migration + def self.up + add_column :users, :password_type, :string + end + + def self.down + remove_column :users, :password_type + end +end -- libgit2 0.21.2