|
12 | 12 |
|
13 | 13 | ActiveRecord::Schema.define(version: 20170525110358) do |
14 | 14 |
|
| 15 | + # These are extensions that must be enabled in order to support this database |
| 16 | + enable_extension "plpgsql" |
| 17 | + |
15 | 18 | create_table "gitrepos", force: :cascade do |t| |
16 | 19 | t.string "url" |
17 | 20 | t.datetime "created_at", null: false |
18 | 21 | t.datetime "updated_at", null: false |
19 | 22 | t.integer "user_id" |
20 | | - t.index ["user_id"], name: "index_gitrepos_on_user_id" |
| 23 | + t.index ["user_id"], name: "index_gitrepos_on_user_id", using: :btree |
21 | 24 | end |
22 | 25 |
|
23 | 26 | create_table "repositories", force: :cascade do |t| |
|
28 | 31 | t.integer "upload_file_size" |
29 | 32 | t.datetime "upload_updated_at" |
30 | 33 | t.integer "user_id" |
31 | | - t.index ["user_id"], name: "index_repositories_on_user_id" |
| 34 | + t.index ["user_id"], name: "index_repositories_on_user_id", using: :btree |
32 | 35 | end |
33 | 36 |
|
34 | 37 | create_table "users", force: :cascade do |t| |
|
46 | 49 | t.datetime "updated_at", null: false |
47 | 50 | t.string "provider" |
48 | 51 | t.string "uid" |
49 | | - t.index ["email"], name: "index_users_on_email", unique: true |
50 | | - t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true |
| 52 | + t.index ["email"], name: "index_users_on_email", unique: true, using: :btree |
| 53 | + t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree |
51 | 54 | end |
52 | 55 |
|
53 | 56 | end |
0 commit comments