Sha256: 3934c2ff78177b3b0105b6d34390c346afb1b7408d2e2ea610ac15a09c0cbb43

Contents?: true

Size: 702 Bytes

Versions: 16

Compression:

Stored size: 702 Bytes

Contents

class CreateSocialNetworkingProfiles < ActiveRecord::Migration
  def change

    create_table :social_networking_profiles do |t|
      t.integer :participant_id, null: false
      t.boolean :active, null: false

      t.timestamps
    end

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

      dir.down do
        execute <<-SQL
          ALTER TABLE social_networking_profiles
            DROP CONSTRAINT IF EXISTS fk_profiles_participants
        SQL
      end
    end

  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
social_networking-0.13.3 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.13.2 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.13.1 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.13.0 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.12.0 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.8 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.7 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.6 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.5 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.4 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.3 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.2 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.1 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.11.0 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.10.0 db/migrate/20140915185648_create_social_networking_profiles.rb
social_networking-0.9.3 db/migrate/20140915185648_create_social_networking_profiles.rb