forked from pluosi/app-host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.rb
85 lines (79 loc) · 2.85 KB
/
schema.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# 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.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20181205180629) do
create_table "apps", force: :cascade do |t|
t.string "name"
t.string "icon"
t.string "plants"
t.string "last_version"
t.integer "last_pkg_size"
t.integer "last_pkg_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "desc"
t.integer "palts_count", default: 0
t.integer "packages_count", default: 0
t.integer "user_id"
t.datetime "deleted_at"
t.boolean "archived", default: false
t.index ["deleted_at"], name: "index_apps_on_deleted_at"
end
create_table "pkgs", force: :cascade do |t|
t.integer "app_id"
t.string "name"
t.string "icon"
t.string "plat_name"
t.string "bundle_id"
t.string "version"
t.string "build"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "plat_id"
t.string "file"
t.integer "size", default: 0
t.string "uniq_key"
t.integer "user_id"
t.datetime "deleted_at"
t.string "file_nick_name"
t.string "features"
t.index ["deleted_at"], name: "index_pkgs_on_deleted_at"
end
create_table "plats", force: :cascade do |t|
t.string "name"
t.string "plat_name"
t.integer "app_id"
t.string "pkg_name"
t.integer "packages_count", default: 0
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "bundle_id"
t.boolean "pkg_uniq", default: true
t.integer "user_id"
t.datetime "deleted_at"
t.integer "sort", default: 0
t.index ["deleted_at"], name: "index_plats_on_deleted_at"
end
create_table "users", force: :cascade do |t|
t.string "email"
t.string "role", default: "user"
t.string "password_digest"
t.string "remember_token"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "api_token"
t.datetime "deleted_at"
t.index ["api_token"], name: "index_users_on_api_token"
t.index ["deleted_at"], name: "index_users_on_deleted_at"
t.index ["email"], name: "index_users_on_email"
t.index ["remember_token"], name: "index_users_on_remember_token"
end
end