1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20190521123642_create_statistic_profile.rb

23 lines
822 B
Ruby
Raw Normal View History

# frozen_string_literal:true
class CreateStatisticProfile < ActiveRecord::Migration[4.2]
2019-06-03 17:25:04 +02:00
def change
create_table :statistic_profiles do |t|
t.boolean :gender
t.date :birthday
t.belongs_to :group, index: true, foreign_key: true
t.belongs_to :user, index: true, foreign_key: true
t.belongs_to :role, index: true, foreign_key: true
t.timestamps
2019-06-03 17:25:04 +02:00
end
add_reference :reservations, :statistic_profile, index: true, foreign_key: true
add_reference :subscriptions, :statistic_profile, index: true, foreign_key: true
2019-06-11 10:02:48 +02:00
add_reference :invoices, :statistic_profile, index: true, foreign_key: true
2019-06-06 16:34:53 +02:00
add_column :projects, :author_statistic_profile_id, :integer, index: true
add_foreign_key :projects, :statistic_profiles, column: :author_statistic_profile_id
2019-06-03 17:25:04 +02:00
end
end