id(); $table->unsignedBigInteger('father_id'); $table->foreign('father_id')->references('id')->on('fathers'); $table->string('title'); $table->string('text'); $table->string('pdf')->nullable(); $table->integer('is_favorite')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('meetings'); } }