Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - app/models/status.rb - app/services/remove_status_service.rb - db/schema.rb All conflicts were due to the addition of a `deleted_at` attribute to Statuses and reworked database indexes.
This commit is contained in:
5
db/migrate/20190819134503_add_deleted_at_to_statuses.rb
Normal file
5
db/migrate/20190819134503_add_deleted_at_to_statuses.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddDeletedAtToStatuses < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :statuses, :deleted_at, :datetime
|
||||
end
|
||||
end
|
13
db/migrate/20190820003045_update_statuses_index.rb
Normal file
13
db/migrate/20190820003045_update_statuses_index.rb
Normal file
@@ -0,0 +1,13 @@
|
||||
class UpdateStatusesIndex < ActiveRecord::Migration[5.2]
|
||||
disable_ddl_transaction!
|
||||
|
||||
def up
|
||||
safety_assured { add_index :statuses, [:account_id, :id, :visibility, :updated_at], where: 'deleted_at IS NULL', order: { id: :desc }, algorithm: :concurrently, name: :index_statuses_20190820 }
|
||||
remove_index :statuses, name: :index_statuses_20180106
|
||||
end
|
||||
|
||||
def down
|
||||
safety_assured { add_index :statuses, [:account_id, :id, :visibility, :updated_at], order: { id: :desc }, algorithm: :concurrently, name: :index_statuses_20180106 }
|
||||
remove_index :statuses, name: :index_statuses_20190820
|
||||
end
|
||||
end
|
11
db/migrate/20190823221802_add_local_index_to_statuses.rb
Normal file
11
db/migrate/20190823221802_add_local_index_to_statuses.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class AddLocalIndexToStatuses < ActiveRecord::Migration[5.2]
|
||||
disable_ddl_transaction!
|
||||
|
||||
def up
|
||||
add_index :statuses, [:id, :account_id], name: :index_statuses_local_20190824, algorithm: :concurrently, order: { id: :desc }, where: '(local OR (uri IS NULL)) AND deleted_at IS NULL AND visibility = 0 AND reblog_of_id IS NULL AND ((NOT reply) OR (in_reply_to_account_id = account_id))'
|
||||
end
|
||||
|
||||
def down
|
||||
remove_index :statuses, name: :index_statuses_local_20190824
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user