cambio en columna
This commit is contained in:
parent
b4c9c5b14e
commit
888a1f4adf
|
@ -13,7 +13,7 @@ public function up(): void
|
||||||
{
|
{
|
||||||
Schema::create('productos', function (Blueprint $table) {
|
Schema::create('productos', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('name', 100);
|
$table->string('name', 200);
|
||||||
$table->double('price', 15, 2);
|
$table->double('price', 15, 2);
|
||||||
$table->unsignedBigInteger('categoria_id');
|
$table->unsignedBigInteger('categoria_id');
|
||||||
$table->boolean('solidario');
|
$table->boolean('solidario');
|
||||||
|
|
Loading…
Reference in New Issue