Sha256: f618a0014567cab885a054ed5d5e283d2b3eecf16f8cbfcb8115374b5aa2ddd9
Contents?: true
Size: 403 Bytes
Versions: 29
Compression:
Stored size: 403 Bytes
Contents
class CreateShipitCommitDeployments < ActiveRecord::Migration[4.2] def change create_table :commit_deployments do |t| t.references :commit, foreign_key: true t.references :task, index: true, foreign_key: true t.integer :github_id, null: true t.string :api_url, null: true t.timestamps null: false t.index %i(commit_id task_id), unique: true end end end
Version data entries
29 entries across 29 versions & 1 rubygems