Class: CreatePunches

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

Class Method Summary collapse

Class Method Details

.downObject



11
12
13
# File 'lib/db/migrate/02_create_punches.rb', line 11

def self.down
  drop_table :people
end

.upObject



2
3
4
5
6
7
8
9
# File 'lib/db/migrate/02_create_punches.rb', line 2

def self.up
  create_table :punches do |t|
    t.integer  :person_id, :null => false
    t.datetime :checked_in_at, :null => false
    t.datetime :checked_out_at, :default => nil
    t.timestamps
  end
end