Class: BatchManagerMigration

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

Class Method Summary collapse

Class Method Details

.downObject



11
12
13
# File 'lib/generators/batch_manager/migration/templates/active_record/migration.rb', line 11

def self.down
  drop_table :schema_batches
end

.upObject



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

def self.up
  create_table :schema_batches do |t|
    t.string :name
    t.integer :ran_times, :default => 0
    t.datetime :last_ran_at
  end
  add_index :schema_batches, :name
end