Updating styling, fixing some errors, and adding cert logging

This commit is contained in:
2013-01-25 06:52:19 -07:00
parent 653fcc3112
commit 63b1b05010
10 changed files with 63 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
class AddUpdatedByToUserCertifications < ActiveRecord::Migration
def change
add_column :user_certifications, :updated_by, :integer
end
end

View File

@@ -0,0 +1,5 @@
class AddCreatedByToUserCertifications < ActiveRecord::Migration
def change
add_column :user_certifications, :created_by, :integer
end
end

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20130125124102) do
ActiveRecord::Schema.define(:version => 20130125133237) do
create_table "cards", :force => true do |t|
t.string "card_number"
@@ -40,6 +40,8 @@ ActiveRecord::Schema.define(:version => 20130125124102) do
t.integer "certification_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.integer "updated_by"
t.integer "created_by"
end
create_table "users", :force => true do |t|