Commit b53a15f0b6c891cd8aa4697d47515ae6a9d588bb

Authored by Georg Hopp
1 parent f9104984

commit changes to db schema

Showing 1 changed file with 12 additions and 4 deletions
... ... @@ -11,14 +11,22 @@
11 11 #
12 12 # It's strongly recommended that you check this file into your version control system.
13 13
14   -ActiveRecord::Schema.define(version: 20160419084655) do
  14 +ActiveRecord::Schema.define(version: 20160419090228) do
15 15
16 16 create_table "certificates", force: :cascade do |t|
17   - t.string "key"
18   - t.string "cert"
  17 + t.text "key"
  18 + t.text "cert"
  19 + t.boolean "active"
19 20 t.datetime "created_at", null: false
20 21 t.datetime "updated_at", null: false
21   - t.boolean "active"
  22 + end
  23 +
  24 + create_table "lxd_hosts", force: :cascade do |t|
  25 + t.text "name"
  26 + t.text "uri"
  27 + t.string "password_digest"
  28 + t.datetime "created_at", null: false
  29 + t.datetime "updated_at", null: false
22 30 end
23 31
24 32 end
... ...
Please register or login to post a comment