Merge branch 'main' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2021-06-03 20:47:02 +02:00
498 changed files with 1454 additions and 551 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
class RemoveLockVersionFromAccountStats < ActiveRecord::Migration[5.2]
def change
safety_assured do
remove_column :account_stats, :lock_version, :integer, null: false, default: 0
end
end
end