Sha256: 0fbbb1b99719f3a2208515a34b7ed4aacc972a718086471e588b514fa7a941b8

Contents?: true

Size: 861 Bytes

Versions: 16

Compression:

Stored size: 861 Bytes

Contents

class CreateSocialNetworkingProfileAnswers < ActiveRecord::Migration
  def change

    create_table :social_networking_profile_answers do |t|
      t.integer :social_networking_profile_question_id, null: false
      t.integer :order, null: true
      t.string :answer_text, null: false

      t.timestamps
    end

    reversible do |dir|
      dir.up do
        execute <<-SQL
          ALTER TABLE social_networking_profile_answers
            ADD CONSTRAINT fk_profile_answers_profile_questions
            FOREIGN KEY (social_networking_profile_question_id)
            REFERENCES social_networking_profile_questions(id)
        SQL
      end

      dir.down do
        execute <<-SQL
          ALTER TABLE social_networking_profile_answers
            DROP CONSTRAINT IF EXISTS fk_profile_answers_profile_questions
        SQL
      end
    end

  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

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