Adding contracts

This commit is contained in:
2014-02-27 04:13:53 -07:00
parent 095b6d3965
commit c74da562bc
8 changed files with 198 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
class CreateContracts < ActiveRecord::Migration
def change
create_table :contracts do |t|
t.integer :user_id
t.datetime :first_name
t.datetime :last_name
t.datetime :signed_at
t.string :document_file_name
t.string :document_content_type
t.integer :document_file_size
t.datetime :document_updated_at
t.timestamps
end
end
end