Sha256: 280573d01d3bc8b74f1affdb6a9a81d1d74237723f4ba004ac3a727e9f8f35de
Contents?: true
Size: 528 Bytes
Versions: 18
Compression:
Stored size: 528 Bytes
Contents
class CreateShipitCheckRuns < ActiveRecord::Migration[5.1] def change create_table :check_runs do |t| t.references :stack, foreign_key: false, null: false t.references :commit, foreign_key: false, null: false t.bigint :github_id, null: false t.string :name, null: false t.string :conclusion, limit: 20, null: true t.string :title, limit: 1024 t.string :details_url t.string :html_url t.timestamps t.index %i(github_id commit_id), unique: true end end end
Version data entries
18 entries across 18 versions & 1 rubygems