Table name: teams
id :integer not null, primary key guid :string(36) not null name :string(255) not null role_id :integer default(1), not null created_at :datetime not null updated_at :datetime not null
# File app/models/team.rb, line 42 def project_tokens=(ids) self.project_ids = ids.split(",") end
# File app/models/team.rb, line 34 def to_param self.guid end
# File app/models/team.rb, line 46 def user_tokens=(ids) self.user_ids = ids.split(",") end