I have added the performance model, controller, route and seed data, now I am working on the actual visual aspects of the page

This commit is contained in:
Ken Johnson
2013-05-31 14:45:31 -04:00
parent 2fa68be920
commit 379c442049
15 changed files with 136 additions and 4 deletions
+11 -1
View File
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20130531143853) do
ActiveRecord::Schema.define(:version => 20130531182058) do
create_table "paid_time_offs", :force => true do |t|
t.integer "user_id"
@@ -23,6 +23,16 @@ ActiveRecord::Schema.define(:version => 20130531143853) do
t.datetime "updated_at", :null => false
end
create_table "performances", :force => true do |t|
t.integer "user_id"
t.date "date_submitted"
t.integer "score"
t.string "comments"
t.integer "reviewer"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "retirements", :force => true do |t|
t.string "total"
t.string "employee_contrib"