chatwoot-develop/db/migrate/20250105005821_remove_not_null_from_captain_documents.rb

6 lines
149 B
Ruby
Executable File

class RemoveNotNullFromCaptainDocuments < ActiveRecord::Migration[7.0]
def change
change_column_null :captain_documents, :name, true
end
end