Displaying 1 result from an estimated 1 matches for "marcoafi".
Did you mean:
marcoa
2011 Apr 07
3
Need help in changing data in production.
Hi everybody,
I have to change a lot of data in production server and I don''t know what''s
the best way to do it.
To handle the permissions in the older version of my system I had two
models: Group and Permision.
class Group < ActiveRecord::Base
has_many :actions
end
class Permission < ActiveRecord::Base
belongs_to :group
PERMISSION_NAMES = "..."
end
I