a lot of new models ...

Fotogallary, gremien, fetprofil,
This commit is contained in:
Andreas Stephanides
2013-08-19 15:39:56 +02:00
parent a19d708134
commit 34b602e126
107 changed files with 2615 additions and 0 deletions

3
app/models/fetprofile.rb Normal file
View File

@@ -0,0 +1,3 @@
class Fetprofile < ActiveRecord::Base
attr_accessible :active, :desc, :fetmailalias, :nachname, :picture, :short, :vorname
end

3
app/models/foto.rb Normal file
View File

@@ -0,0 +1,3 @@
class Foto < ActiveRecord::Base
attr_accessible :datei, :desc, :gallery_id, :title
end

3
app/models/gallery.rb Normal file
View File

@@ -0,0 +1,3 @@
class Gallery < ActiveRecord::Base
attr_accessible :datum, :desc, :name
end

3
app/models/gremium.rb Normal file
View File

@@ -0,0 +1,3 @@
class Gremium < ActiveRecord::Base
attr_accessible :desc, :name, :typ
end

3
app/models/membership.rb Normal file
View File

@@ -0,0 +1,3 @@
class Membership < ActiveRecord::Base
attr_accessible :fetprofile_id, :gremium_id, :start, :stop, :typ
end