????
Current Path : C:/inetpub/vhost/redmine/db/migrate/ |
Current File : C:/inetpub/vhost/redmine/db/migrate/080_add_users_type.rb |
class AddUsersType < ActiveRecord::Migration[4.2] def self.up add_column :users, :type, :string User.update_all "type = 'User'" end def self.down remove_column :users, :type end end