069_add_modules_to_profile.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:
Ajax
开发平台:
Others
- class AddModulesToProfile < ActiveRecord::Migration
- class Profile < ActiveRecord::Base
- include BareMigration
- serialize :profiles
- end
- def self.up
- add_column :profiles, :modules, :text
- Profile.find_by_label("admin").update_attributes(:modules => [:dashboard, :write, :content, :feedback, :themes, :sidebar, :users, :settings])
- Profile.find_by_label("publisher").update_attributes(:modules => [:dashboard, :write, :content, :feedback ])
- end
- def self.down
- remove_column :profiles, :modules
- end
- end