Updating styling, fixing some errors, and adding cert logging
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddUpdatedByToUserCertifications < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :user_certifications, :updated_by, :integer
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddCreatedByToUserCertifications < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :user_certifications, :created_by, :integer
|
||||
end
|
||||
end
|
||||
@@ -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|
|
||||
|
||||
Reference in New Issue
Block a user