Files
fetsite/db/migrate/20130819133446_create_memberships.rb
Andreas Stephanides 34b602e126 a lot of new models ...
Fotogallary, gremien, fetprofil,
2013-08-19 15:39:56 +02:00

14 lines
254 B
Ruby

class CreateMemberships < ActiveRecord::Migration
def change
create_table :memberships do |t|
t.string :fetprofile_id
t.string :gremium_id
t.date :start
t.date :stop
t.string :typ
t.timestamps
end
end
end