increments('id'); $table->string('section_no')->nullable(); $table->string('description')->nullable(); $table->json('seats')->nullable(); $table->string('section_image')->nullable(); $table->unsignedInteger('venue_id'); $table->foreign('venue_id')->references('id')->on('venues')->onDelete('cascade'); // $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sections'); } }