id(); $table -> string('color_boton')->nullable(); $table -> string('color_barra')->nullable(); $table -> string('color_menu')->nullable(); $table -> string('url_logo')->nullable(); $table -> string('nombre')->nullable(); $table -> string('slogan')->nullable(); $table->unsignedBigInteger('usermodifico_id')->nullable(); $table->foreign('usermodifico_id') ->references('id') ->on('users') ->onDelete('cascade') ->onUpdate('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('configuraciones'); } };