Contract-Signer/db/migrate/20110928044515_create_signers.rb
2011-09-28 03:37:39 -07:00

16 lines
256 B
Ruby

class CreateSigners < ActiveRecord::Migration
def self.up
create_table :signers do |t|
t.string :first_name
t.string :last_name
t.string :cosigner
t.timestamps
end
end
def self.down
drop_table :signers
end
end