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

Ajax

开发平台:

Others

  1. class AddModulesToProfile < ActiveRecord::Migration
  2.   class Profile < ActiveRecord::Base
  3.     include BareMigration
  4.     serialize :profiles
  5.   end
  6.   def self.up
  7.     add_column :profiles, :modules, :text
  8.     
  9.     Profile.find_by_label("admin").update_attributes(:modules => [:dashboard, :write, :content, :feedback, :themes, :sidebar, :users, :settings])
  10.     Profile.find_by_label("publisher").update_attributes(:modules => [:dashboard, :write, :content, :feedback ])
  11.   end
  12.   def self.down
  13.     remove_column :profiles, :modules
  14.   end
  15. end