Class: CreateTable

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/migrations/1_create_table.rb

Class Method Summary collapse

Class Method Details

.upObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/migrations/1_create_table.rb', line 4

def self.up

  create_table "minitest_test_methods", :force => true do |t|
    t.string "project", :null => false
    t.string "machine", :null => false
    t.string "test_id", :null => false

    t.string "klass", :null => false
    t.string "method", :null => false
    t.boolean "exception", :null => false
    t.time "execution_time", :null => false
  end
  
end