080_add_state_to_user.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. class AddStateToUser < ActiveRecord::Migration
  2.   def self.up
  3.     add_column :users, :state, :string, :default => 'active'
  4.     
  5.     unless $schema_generator
  6.       User.update_all("state = 'active'")
  7.     end
  8.     
  9.   end
  10.   def self.down
  11.     remove_column :users, :state
  12.   end
  13. end