Sha256: ffb3eb58f68f784cc807905d26faa38297a9d6e05f8895c2b8f067debb9558b8
Contents?: true
Size: 624 Bytes
Versions: 20
Compression:
Stored size: 624 Bytes
Contents
class CreateReleaseStatuses < ActiveRecord::Migration[5.1] def change create_table :release_statuses do |t| t.references :stack, foreign_key: false, null: false, index: false t.references :commit, foreign_key: false, null: false, index: false t.references :user, foreign_key: false, null: true t.string :state, limit: 10, null: false t.string :description, limit: 1024, null: true t.string :target_url, limit: 1024, null: true t.bigint :github_id, null: true t.timestamps t.index %i(commit_id github_id) t.index %i(stack_id commit_id) end end end
Version data entries
20 entries across 20 versions & 1 rubygems