increments('id'); $table->integer('book_id'); $table->integer('chapter_id'); $table->string('name'); $table->string('slug')->indexed(); $table->longText('html'); $table->longText('text'); $table->integer('priority'); $table->nullableTimestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::drop('pages'); } };