id(); $table -> string('precio')->nullable(); $table -> string('img_publicidad')->nullable(); $table -> string('fecha_limite')->nullable(); $table -> string('visible')->nullable(); $table->unsignedBigInteger('categoria_id')->nullable(); $table->foreign('categoria_id') ->references('id') ->on('categorias') ->onDelete('cascade') ->onUpdate('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('promociones'); } };