Sha256: 051e917183954c6f0cca3bd9cb1a082edec201162511f090fc1a0c0bf823b615
Contents?: true
Size: 373 Bytes
Versions: 9
Compression:
Stored size: 373 Bytes
Contents
class CreateStars < ActiveRecord::Migration def change create_table "stars" do |t| t.integer "user_id", limit: 4, null: false t.integer "job_definition_id", limit: 4, null: false t.datetime "created_at" t.datetime "updated_at" end add_index "stars", ["user_id", "job_definition_id"], unique: true, using: :btree end end
Version data entries
9 entries across 9 versions & 1 rubygems