Initial commit
This commit is contained in:
16
db/migrate/20110926071131_create_contracts.rb
Normal file
16
db/migrate/20110926071131_create_contracts.rb
Normal 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
|
||||
14
db/migrate/20110926081035_create_contract_templates.rb
Normal file
14
db/migrate/20110926081035_create_contract_templates.rb
Normal 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
|
||||
15
db/migrate/20110928044515_create_signers.rb
Normal file
15
db/migrate/20110928044515_create_signers.rb
Normal 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
|
||||
9
db/migrate/20110928083049_add_signer_id_to_contracts.rb
Normal file
9
db/migrate/20110928083049_add_signer_id_to_contracts.rb
Normal 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
|
||||
9
db/migrate/20110928083830_add_name_to_contracts.rb
Normal file
9
db/migrate/20110928083830_add_name_to_contracts.rb
Normal 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
|
||||
Reference in New Issue
Block a user