Sha256: 8402a2d719625b5ee9a0e1046800a90e7900df2603a6237139049e51ef941ef3

Contents?: true

Size: 607 Bytes

Versions: 9

Compression:

Stored size: 607 Bytes

Contents

class CreateJobDefinitionTags < ActiveRecord::Migration
  def change
    create_table "job_definition_tags" do |t|
      t.integer  "job_definition_id", limit: 4, null: false
      t.integer  "tag_id",            limit: 4, null: false
      t.datetime "created_at",                  null: false
      t.datetime "updated_at",                  null: false
    end

    add_index "job_definition_tags", ["job_definition_id", "tag_id"], name: 'kuroko2_definition_tag_idx', unique: true, using: :btree
    add_index "job_definition_tags", ["tag_id"], name: "job_definition_tags_tag_id", using: :btree
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
kuroko2-0.3.4 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.3.3 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.3.2 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.3.1 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.3.0 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.2.3 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.2.2 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.2.1 db/migrate/018_create_job_definition_tags.rb
kuroko2-0.2.0 db/migrate/018_create_job_definition_tags.rb