English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
Java编程
>
Ajax
> 查看源码
080_add_state_to_user.rb
资源名称:
typo-5.4.4.zip [点击查看]
上传用户:
netsea168
上传日期:
2022-07-22
资源大小:
4652k
文件大小:
0k
源码类别:
Ajax
开发平台:
Others
080_add_state_to_user.rb:源码内容
class AddStateToUser < ActiveRecord::Migration
def self.up
add_column :users, :state, :string, :default => 'active'
unless $schema_generator
User.update_all("state = 'active'")
end
end
def self.down
remove_column :users, :state
end
end