forked from bofh/fetsite
14 lines
254 B
Ruby
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
|