class CreateBillingInformations < ActiveRecord::Migration[6.0]
  def change
    create_table :billing_informations do |t|
      t.integer :user_id, null: false
      t.string :billing_company
      t.string :billing_address
      t.string :billing_zip_code
      t.string :billing_city
      t.integer :billing_country_id
      t.string :billing_email
      t.timestamps
    end
  end
end
