feat: user_ips の id を削除(#231) (#238)
#231 Co-authored-by: miteruzo <miteruzo@naver.com> Reviewed-on: #238
This commit was merged in pull request #238.
This commit is contained in:
Generated
+2
-3
@@ -10,7 +10,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[8.0].define(version: 2026_01_26_124100) do
|
||||
ActiveRecord::Schema[8.0].define(version: 2026_01_27_000900) do
|
||||
create_table "active_storage_attachments", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.string "record_type", null: false
|
||||
@@ -144,13 +144,12 @@ ActiveRecord::Schema[8.0].define(version: 2026_01_26_124100) do
|
||||
t.index ["tag_name_id"], name: "index_tags_on_tag_name_id", unique: true
|
||||
end
|
||||
|
||||
create_table "user_ips", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
||||
create_table "user_ips", primary_key: ["user_id", "ip_address_id"], charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
||||
t.bigint "user_id", null: false
|
||||
t.bigint "ip_address_id", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["ip_address_id"], name: "index_user_ips_on_ip_address_id"
|
||||
t.index ["user_id"], name: "index_user_ips_on_user_id"
|
||||
end
|
||||
|
||||
create_table "user_post_views", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
||||
|
||||
Reference in New Issue
Block a user