Add domain block setting reject_favourite and reject_reply

This commit is contained in:
KMY 2023-04-27 12:04:10 +09:00
parent 27353bbaee
commit 6537405eab
15 changed files with 85 additions and 22 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2023_04_26_013738) do
ActiveRecord::Schema.define(version: 2023_04_27_022606) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -468,6 +468,8 @@ ActiveRecord::Schema.define(version: 2023_04_26_013738) do
t.text "private_comment"
t.text "public_comment"
t.boolean "obfuscate", default: false, null: false
t.boolean "reject_favourite", default: false, null: false
t.boolean "reject_reply", default: false, null: false
t.index ["domain"], name: "index_domain_blocks_on_domain", unique: true
end