Class: CreateAsyncJobResults

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/async_job_migration/templates/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



12
13
14
# File 'lib/generators/async_job_migration/templates/migration.rb', line 12

def self.down
  drop_table :async_job_results
end

.upObject



2
3
4
5
6
7
8
9
10
# File 'lib/generators/async_job_migration/templates/migration.rb', line 2

def self.up
  create_table :async_job_results, :force => true do |t|
    t.boolean :success
    t.text :results
    t.timestamps
  end

  add_index :async_job_results, [:id], :name => 'async_job_results_id'
end