Louis | Adds clients model & views to db

This commit is contained in:
Loos
2014-09-16 20:50:58 -04:00
parent 3c8962fa49
commit d3403e18cd
17 changed files with 237 additions and 21 deletions
@@ -0,0 +1,19 @@
class CreateClients < ActiveRecord::Migration
def change
create_table :clients do |t|
t.string :first_name
t.string :last_name
t.date :application_date
t.string :gender
t.integer :age
t.integer :weight
t.boolean :helmet
t.boolean :lock
t.string :agency
t.date :completion_date
t.timestamps
end
end
end