Initial commit

This commit is contained in:
2011-09-28 03:37:39 -07:00
commit b1fbb339c2
373 changed files with 52305 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
class CreateContracts < ActiveRecord::Migration
def self.up
create_table :contracts do |t|
t.string :boilerplate
t.binary :signature
t.string :signinghash
t.datetime :datesigned
t.timestamps
end
end
def self.down
drop_table :contracts
end
end

View File

@@ -0,0 +1,14 @@
class CreateContractTemplates < ActiveRecord::Migration
def self.up
create_table :contract_templates do |t|
t.string :name
t.string :boilerplate
t.timestamps
end
end
def self.down
drop_table :contract_templates
end
end

View File

@@ -0,0 +1,15 @@
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

View File

@@ -0,0 +1,9 @@
class AddSignerIdToContracts < ActiveRecord::Migration
def self.up
add_column :contracts, :signer_id, :int
end
def self.down
remove_column :contracts, :signer_id
end
end

View File

@@ -0,0 +1,9 @@
class AddNameToContracts < ActiveRecord::Migration
def self.up
add_column :contracts, :name, :string
end
def self.down
remove_column :contracts, :name
end
end