Table name: projects
id :integer not null, primary key guid :string(36) not null name :string(255) not null status_id :integer default(1), not null created_at :datetime not null updated_at :datetime not null
# File app/models/project.rb, line 34 def default_team=(id) self.team_ids = [id] end
# File app/models/project.rb, line 38 def to_param self.guid end