Fix #614 - extra reply-boolean on statuses to account for cases when replied-to
status is not in the system at time of distribution; fix #607 - reset privacy settings to defaults when cancelling replies
This commit is contained in:
parent
c424df5192
commit
6331ed16e5
11 changed files with 32 additions and 100 deletions
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20170205175257) do
|
||||
ActiveRecord::Schema.define(version: 20170209184350) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -197,6 +197,7 @@ ActiveRecord::Schema.define(version: 20170205175257) do
|
|||
t.integer "in_reply_to_account_id"
|
||||
t.integer "application_id"
|
||||
t.text "spoiler_text", default: "", null: false
|
||||
t.boolean "reply", default: false
|
||||
t.index ["account_id"], name: "index_statuses_on_account_id", using: :btree
|
||||
t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id", using: :btree
|
||||
t.index ["reblog_of_id"], name: "index_statuses_on_reblog_of_id", using: :btree
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue