Contract-Signer/db/migrate/20110928044515_create_signers.rb

16 lines
256 B
Ruby
Raw Permalink Normal View History

2011-09-28 10:37:39 +00:00
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