Sha256: 1fed9458eaee209a2179b007d09d253c6fc0198e19d391d5b43050353e62853f

Contents?: true

Size: 413 Bytes

Versions: 1

Compression:

Stored size: 413 Bytes

Contents

# This migration comes from g5_sibling_deployer_engine_engine (originally 2)
class CreateSiblingDeploys < ActiveRecord::Migration
  def change
    create_table :sibling_deploys do |t|
      t.references :sibling
      t.references :instruction
      t.boolean :manual
      t.string :state
      t.string :git_repo
      t.string :heroku_repo
      t.string :heroku_app_name

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
g5_sibling_deployer_engine-0.7.0 spec/dummy/db/migrate/20150430182534_create_sibling_deploys.g5_sibling_deployer_engine_engine.rb