class CreatePeople < ActiveRecord::Migration def self.up create_table :people do |t| t.column :legal_name, :string t.column :other_name, :string t.column :home_address, :string t.column :postal_address, :string t.column :home_contact, :string t.column :phone_number, :string t.column :sex, :string t.column :date_of_birth, :date t.column :place_of_birth, :string t.timestamps end end def self.down drop_table :people end end