class CreateProfiles < ActiveRecord::Migration def self.up create_table :profiles do |t| t.integer :user_id t.string :name t.string :surname t.date :birth_date t.string :avatar t.timestamps end end def self.down drop_table :profiles end end