I am working with migrations in Laravel and I have a partners table that has a type attribute of type enum with the following values:
$table->enum('type', ['cliente', 'proveedor', 'empleado', 'transportadora'])->nullable();
What I nee...
asked on
30.08.2018 / 22:40