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