mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
24 lines
909 B
Ruby
24 lines
909 B
Ruby
# frozen_string_literal:true
|
|
|
|
class CreateInvoicingProfiles < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :invoicing_profiles do |t|
|
|
t.references :user, index: true, foreign_key: true
|
|
t.string :first_name
|
|
t.string :last_name
|
|
t.string :email
|
|
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_reference :organizations, :invoicing_profile, index: true, foreign_key: true
|
|
add_reference :invoices, :invoicing_profile, index: true, foreign_key: true
|
|
add_reference :wallets, :invoicing_profile, index: true, foreign_key: true
|
|
add_reference :wallet_transactions, :invoicing_profile, index: true, foreign_key: true
|
|
add_reference :history_values, :invoicing_profile, index: true, foreign_key: true
|
|
|
|
add_column :invoices, :operator_profile_id, :integer
|
|
add_foreign_key :invoices, :invoicing_profiles, column: :operator_profile_id, primary_key: :id
|
|
end
|
|
end
|