Sha256: b5d8bfba9818c12d1516b22d4ab610c773f5efa147448e8f064ece16165df4d8

Contents?: true

Size: 523 Bytes

Versions: 68

Compression:

Stored size: 523 Bytes

Contents

class AddPatternIdToThoughts < ActiveRecord::Migration
  def change
    add_column :thoughts, :pattern_id, :integer

    reversible do |dir|
      dir.up do
        execute <<-SQL
          ALTER TABLE thoughts
            ADD CONSTRAINT fk_thoughts_patterns
            FOREIGN KEY (pattern_id)
            REFERENCES thought_patterns(id)
        SQL
      end
      dir.down do
        execute <<-SQL
          ALTER TABLE thoughts
            DROP CONSTRAINT fk_thoughts_patterns
        SQL
      end
    end
  end
end

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
think_feel_do_engine-3.14.8 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.7 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.6 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.5 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.4 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.3 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.2 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.1 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.14.0 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.13.1 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.13.0 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.9 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.8 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.7 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.6 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.5 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.4 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.3 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.2 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb
think_feel_do_engine-3.12.1 db/migrate/20140313192408_add_pattern_id_to_thoughts.rb