Commit d0a31efbb191ca055aaf4bf0793774e28fe28339

Authored by AntonioTerceiro
1 parent 4b98f727

ActionItem44: adding password_type field to users table


git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1855 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 1 changed file with 9 additions and 0 deletions   Show diff stats
db/migrate/034_adds_password_type_to_users.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class AddsPasswordTypeToUsers < ActiveRecord::Migration
  2 + def self.up
  3 + add_column :users, :password_type, :string
  4 + end
  5 +
  6 + def self.down
  7 + remove_column :users, :password_type
  8 + end
  9 +end
... ...