Adding interlock authentication

This commit is contained in:
2014-02-23 05:55:00 -07:00
parent c5556a0d50
commit 095b6d3965
12 changed files with 81 additions and 15 deletions

View File

@@ -0,0 +1,5 @@
class AddSlugToCertifications < ActiveRecord::Migration
def change
add_column :certifications, :slug, :string
end
end

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20140214070420) do
ActiveRecord::Schema.define(:version => 20140223060554) do
create_table "cards", :force => true do |t|
t.string "card_number"
@@ -27,6 +27,7 @@ ActiveRecord::Schema.define(:version => 20140214070420) do
t.string "description"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "slug"
end
create_table "door_logs", :force => true do |t|