|
10 | 10 | #
|
11 | 11 | # It's strongly recommended that you check this file into your version control system.
|
12 | 12 |
|
13 |
| -ActiveRecord::Schema.define(version: 2021_05_03_145247) do |
| 13 | +ActiveRecord::Schema[7.0].define(version: 2023_03_22_131821) do |
14 | 14 | create_table "accounts", force: :cascade do |t|
|
15 | 15 | t.integer "user_id"
|
16 |
| - t.datetime "created_at", precision: 6, null: false |
17 |
| - t.datetime "updated_at", precision: 6, null: false |
| 16 | + t.datetime "created_at", null: false |
| 17 | + t.datetime "updated_at", null: false |
18 | 18 | end
|
19 | 19 |
|
20 | 20 | create_table "posts", force: :cascade do |t|
|
21 | 21 | t.integer "user_id", null: false
|
22 |
| - t.datetime "created_at", precision: 6, null: false |
23 |
| - t.datetime "updated_at", precision: 6, null: false |
| 22 | + t.datetime "created_at", null: false |
| 23 | + t.datetime "updated_at", null: false |
24 | 24 | t.index ["user_id"], name: "index_posts_on_user_id"
|
25 | 25 | end
|
26 | 26 |
|
| 27 | + create_table "teams", force: :cascade do |t| |
| 28 | + t.datetime "created_at", null: false |
| 29 | + t.datetime "updated_at", null: false |
| 30 | + end |
| 31 | + |
27 | 32 | create_table "users", force: :cascade do |t|
|
28 |
| - t.datetime "created_at", precision: 6, null: false |
29 |
| - t.datetime "updated_at", precision: 6, null: false |
| 33 | + t.datetime "created_at", null: false |
| 34 | + t.datetime "updated_at", null: false |
30 | 35 | end
|
31 | 36 |
|
32 | 37 | add_foreign_key "posts", "users"
|
|
0 commit comments