Add: #568 ハッシュタグ・メンション上限を超えた投稿もNGワード履歴に記録 (#579)

This commit is contained in:
KMY(雪あすか) 2024-02-17 12:16:41 +09:00 committed by GitHub
parent a6b5e64e15
commit e5ab4a3eb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 104 additions and 21 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2024_02_16_042730) do
ActiveRecord::Schema[7.1].define(version: 2024_02_17_022038) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -876,7 +876,9 @@ ActiveRecord::Schema[7.1].define(version: 2024_02_16_042730) do
t.string "keyword", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "count", default: 0, null: false
t.index ["uri", "keyword", "created_at"], name: "index_ngword_histories_on_uri_and_keyword_and_created_at"
t.index ["uri", "reason", "created_at"], name: "index_ngword_histories_on_uri_and_reason_and_created_at"
end
create_table "notifications", force: :cascade do |t|