class CreateCompanyInfos < ActiveRecord::Migration
  def change
    create_table :company_infos do |t|
      t.text :body_about
      t.text :body_manufacturing
      t.text :body_contacts
      t.string :info_phone
      t.string :info_email
      t.string :info_tagline
      t.text :info_contacts
      t.string :en_title
      t.text :en_body

      t.timestamps
    end
  end
end
