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

16 lines
305 B
Ruby

class CreateFetprofiles < ActiveRecord::Migration
def change
create_table :fetprofiles do |t|
t.string :vorname
t.string :nachname
t.string :short
t.string :fetmailalias
t.text :desc
t.string :picture
t.boolean :active
t.timestamps
end
end
end