class CreateInvPhotographerBillingSettings < ActiveRecord::Migration[6.0]
  def change
    create_table :inv_photographer_billing_settings do |t|
      t.integer :user_id
      t.string :logo
      t.text :company_details
      t.text :bottom_text
      t.index :user_id
    end
  end
end
