This commit is contained in:
Thomas Blazek
2013-07-23 17:12:39 +02:00
80 changed files with 11110 additions and 1 deletions

View File

@@ -1,3 +1,17 @@
# == Schema Information
#
# Table name: modulgruppen
#
# id :integer not null, primary key
# typ :string(255)
# phase :integer
# name :string(255)
# desc :text
# studium_id :integer
# created_at :datetime not null
# updated_at :datetime not null
#
class Modulgruppe < ActiveRecord::Base
attr_accessible :name, :phase, :typ,:desc, :studium_id
belongs_to :studium, :foreign_key => "studium_id"