Sha256: e9397300e6e0acc9081fde2d5db7b7ced5a570feb802a0f13aaf72616abe39cb

Contents?: true

Size: 1.19 KB

Versions: 73

Compression:

Stored size: 1.19 KB

Contents

class CreateResearchStudyParticipants < ActiveRecord::Migration[5.1]
  def change
    create_table :research_study_participants do |t|
      t.references :participant,
                   null: false,
                   foreign_key: { to_table: :patients },
                   index: true
      t.references :study,
                   null: false,
                   foreign_key: { to_table: :research_studies },
                   index: true
      t.date :joined_on, null: false
      t.date :left_on
      t.datetime :deleted_at
      t.references :updated_by, foreign_key: { to_table: :users }, index: true
      t.references :created_by, foreign_key: { to_table: :users }, index: true
      t.timestamps null: false
    end

    # This create a postgres partial index
    # A participant can only be enrolled once in a study  must be unique in for any unit
    # Ignoring any times there were deleted (for example because they were added in error and so
    # removed, but subsequently added again)
    add_index :research_study_participants,
              [:participant_id, :study_id],
              name: :unique_study_participants,
              unique: true,
              where: "deleted_at IS NULL"
  end
end

Version data entries

73 entries across 73 versions & 1 rubygems

Version Path
renalware-core-2.0.21 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.20 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.18 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.17 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.16 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.15 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.14 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.13 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.12 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.11 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.9 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.8 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.7 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.5 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.4 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.3 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.2 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.1 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.0 db/migrate/20171012143050_create_research_study_participants.rb
renalware-core-2.0.0.pre.rc13 db/migrate/20171012143050_create_research_study_participants.rb