id(); $table -> string('pantallas')->nullable(); $table -> string('dias')->nullable(); $table -> string('valor')->nullable(); $table -> string('estado')->nullable(); $table->unsignedBigInteger('servicio_id')->nullable(); $table->foreign('servicio_id') ->references('id') ->on('servicios') ->onDelete('cascade') ->onUpdate('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tarifas'); } };