Showing
6 changed files
with
57 additions
and
0 deletions
app/models/certificate.rb
0 → 100644
db/schema.rb
0 → 100644
1 | +# encoding: UTF-8 | ||
2 | +# This file is auto-generated from the current state of the database. Instead | ||
3 | +# of editing this file, please use the migrations feature of Active Record to | ||
4 | +# incrementally modify your database, and then regenerate this schema definition. | ||
5 | +# | ||
6 | +# Note that this schema.rb definition is the authoritative source for your | ||
7 | +# database schema. If you need to create the application database on another | ||
8 | +# system, you should be using db:schema:load, not running all the migrations | ||
9 | +# from scratch. The latter is a flawed and unsustainable approach (the more migrations | ||
10 | +# you'll amass, the slower it'll run and the greater likelihood for issues). | ||
11 | +# | ||
12 | +# It's strongly recommended that you check this file into your version control system. | ||
13 | + | ||
14 | +ActiveRecord::Schema.define(version: 20160419084655) do | ||
15 | + | ||
16 | + create_table "certificates", force: :cascade do |t| | ||
17 | + t.string "key" | ||
18 | + t.string "cert" | ||
19 | + t.datetime "created_at", null: false | ||
20 | + t.datetime "updated_at", null: false | ||
21 | + t.boolean "active" | ||
22 | + end | ||
23 | + | ||
24 | +end |
test/fixtures/certificates.yml
0 → 100644
Please
register
or
login
to post a comment