We don't need to specify the default any more

This commit is contained in:
David Heinemeier Hansson
2025-11-29 10:52:01 -08:00
parent 42c411b660
commit 559629537b

View File

@@ -1,5 +1,5 @@
class AddAccountSettings < ActiveRecord::Migration[7.2]
def change
add_column :accounts, :settings, :json, default: {}
add_column :accounts, :settings, :json
end
end