fetprofileprivate data

This commit is contained in:
2014-05-27 19:41:35 +05:30
parent 015bf132a9
commit 13514317c9
10 changed files with 116 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
class AddAdressToFetprofile < ActiveRecord::Migration
def change
add_column :fetprofiles, :street, :string
add_column :fetprofiles, :plz, :string
add_column :fetprofiles, :telnr, :string
add_column :fetprofiles, :hdynr, :string
add_column :fetprofiles, :skype, :string
add_column :fetprofiles, :instant, :string
add_column :fetprofiles, :city, :string
add_column :fetprofiles, :birth_day, :integer
add_column :fetprofiles, :birth_month, :integer
add_column :fetprofiles, :birth_year, :integer
add_column :fetprofiles, :public_birthday, :boolean
end
end