Class: CreateDataMigrations

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/pineapples/templates/db/migrate/02_create_data_migrations.rb

Overview

This migration comes from seed_migration (originally 20140310150145)

Instance Method Summary collapse

Instance Method Details

#downObject



11
12
13
# File 'lib/pineapples/templates/db/migrate/02_create_data_migrations.rb', line 11

def down
  drop_table SeedMigration.migration_table_name
end

#upObject



3
4
5
6
7
8
9
# File 'lib/pineapples/templates/db/migrate/02_create_data_migrations.rb', line 3

def up
  create_table SeedMigration.migration_table_name do |t|
    t.string :version
    t.integer :runtime
    t.datetime :migrated_on
  end
end