-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.rb
69 lines (62 loc) · 2.79 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
# 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[7.1].define(version: 2025_02_01_015927) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "interests", force: :cascade do |t|
t.string "name", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["name"], name: "index_interests_on_name", unique: true
end
create_table "skills", force: :cascade do |t|
t.string "name", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["name"], name: "index_skills_on_name", unique: true
end
create_table "user_interests", force: :cascade do |t|
t.bigint "user_id", null: false
t.bigint "interest_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["interest_id"], name: "index_user_interests_on_interest_id"
t.index ["user_id", "interest_id"], name: "index_user_interests_on_user_id_and_interest_id", unique: true
t.index ["user_id"], name: "index_user_interests_on_user_id"
end
create_table "user_skills", force: :cascade do |t|
t.bigint "user_id", null: false
t.bigint "skill_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["skill_id"], name: "index_user_skills_on_skill_id"
t.index ["user_id", "skill_id"], name: "index_user_skills_on_user_id_and_skill_id", unique: true
t.index ["user_id"], name: "index_user_skills_on_user_id"
end
create_table "users", force: :cascade do |t|
t.string "name", null: false
t.string "surname"
t.string "patronymic"
t.string "email", null: false
t.string "gender"
t.string "nationality"
t.string "country"
t.integer "age"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["email"], name: "index_users_on_email", unique: true
end
add_foreign_key "user_interests", "interests"
add_foreign_key "user_interests", "users"
add_foreign_key "user_skills", "skills"
add_foreign_key "user_skills", "users"
end