1 class CreatePipelineInvocations < ActiveRecord::Migration
3 create_table :pipeline_invocations do |t|
5 t.string :created_by_client
6 t.string :created_by_user
8 t.string :modified_by_client
9 t.string :modified_by_user
10 t.datetime :modified_at
11 t.string :pipeline_uuid
14 t.boolean :success, :null => true
15 t.boolean :active, :default => false
19 add_index :pipeline_invocations, :uuid, :unique => true
22 drop_table :pipeline_invocations