Sha256: b1287b67eb604a02df0a5a0295289cf4316e924f5ed8445db5721082d6a68139

Contents?: true

Size: 593 Bytes

Versions: 68

Compression:

Stored size: 593 Bytes

Contents

class AddParticipantIdToEvents < ActiveRecord::Migration
  def change
    add_column :event_capture_events, :participant_id, :integer, null: false

    reversible do |dir|
      dir.up do
        execute <<-SQL
          ALTER TABLE event_capture_events
            ADD CONSTRAINT fk_events_participants
            FOREIGN KEY (participant_id)
            REFERENCES participants(id)
        SQL
      end

      dir.down do
        execute <<-SQL
          ALTER TABLE event_capture_events
            DROP CONSTRAINT IF EXISTS fk_events_participants
        SQL
      end
    end
  end
end

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
think_feel_do_engine-3.22.9 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.8 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.7 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.6 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.5 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.4 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.2 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.1 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.22.0 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.21.2 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.21.1 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.21.0 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.20.1 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.19.9 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.19.8 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.19.7 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.19.6 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.19.5 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.19.4 db/migrate/20140903134021_add_participant_id_to_events.rb
think_feel_do_engine-3.19.3 db/migrate/20140903134021_add_participant_id_to_events.rb