refactor and fixes

This commit is contained in:
Alex Turchyn
2023-08-19 21:05:54 +03:00
parent 077c55f7e8
commit 46f350217a
18 changed files with 297 additions and 95 deletions
@@ -0,0 +1,8 @@
# frozen_string_literal: true
class RemoveUserFirstLastNameNotNull < ActiveRecord::Migration[7.0]
def change
change_column_null :users, :first_name, true
change_column_null :users, :last_name, true
end
end