More contract tweaks

This commit is contained in:
2014-03-02 21:48:49 -07:00
parent d8311fa7cc
commit 3cd6c59df0
14 changed files with 53 additions and 20 deletions

View File

@@ -0,0 +1,5 @@
class AddCosignerToContracts < ActiveRecord::Migration
def change
add_column :contracts, :cosigner, :string
end
end

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20140227095847) do
ActiveRecord::Schema.define(:version => 20140303030220) do
create_table "cards", :force => true do |t|
t.string "card_number"
@@ -41,6 +41,7 @@ ActiveRecord::Schema.define(:version => 20140227095847) do
t.datetime "document_updated_at"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "cosigner"
end
create_table "door_logs", :force => true do |t|