bigIncrements('id'); $table->string('name'); $table->string('slug'); $table->string('icon'); $table->unsignedSmallInteger('type')->default(PageType::PAGE); $table->boolean('public'); $table->boolean('enabled'); $table->mediumText('body'); $table->timestamps(); $table->index('slug'); }); } public function down() { Schema::dropIfExists('pages'); } }