Browse Source

commit changes to db schema

master
Georg Hopp 10 years ago
parent
commit
b53a15f0b6
  1. 16
      db/schema.rb

16
db/schema.rb

@ -11,14 +11,22 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20160419084655) do
ActiveRecord::Schema.define(version: 20160419090228) do
create_table "certificates", force: :cascade do |t|
t.string "key"
t.string "cert"
t.text "key"
t.text "cert"
t.boolean "active"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.boolean "active"
end
create_table "lxd_hosts", force: :cascade do |t|
t.text "name"
t.text "uri"
t.string "password_digest"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
end
Loading…
Cancel
Save