Fix markdown property on edit status

This commit is contained in:
KMY 2023-04-12 16:37:40 +09:00
parent 25c3915728
commit 8db2f96c36
5 changed files with 10 additions and 2 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_12_005311) do
ActiveRecord::Schema.define(version: 2023_04_12_073021) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -912,6 +912,7 @@ ActiveRecord::Schema.define(version: 2023_04_12_005311) do
t.text "media_descriptions", array: true
t.string "poll_options", array: true
t.boolean "sensitive"
t.boolean "markdown", default: false
t.index ["account_id"], name: "index_status_edits_on_account_id"
t.index ["status_id"], name: "index_status_edits_on_status_id"
end