[add] initial commit

This commit is contained in:
2021-02-24 03:22:52 -05:00
commit c8c91b21d9
57 changed files with 2707 additions and 0 deletions

29
db/schema.rb generated Normal file
View File

@@ -0,0 +1,29 @@
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# This file is the source Rails uses to define your schema when running `bin/rails
# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
# be faster and is potentially less error prone than running all of your
# migrations from scratch. Old migrations may fail to apply correctly if those
# migrations use external dependencies or application code.
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2021_02_18_044438) do
create_table "clients", force: :cascade do |t|
t.string "name", limit: 20, null: false
t.string "name_id", limit: 8, null: false
t.string "api_key_hash", limit: 60, null: false
t.string "description", limit: 200, default: ""
t.boolean "perm_r", default: false
t.boolean "perm_w", default: false
t.boolean "perm_x", default: false
t.boolean "public_ip", default: false
t.string "ipv4", limit: 15, default: ""
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
end
end