bigIncrements('id'); $table->string('name'); $table->string('slug'); $table->string('icon'); $table->unsignedSmallInteger('type'); $table->boolean('public'); $table->boolean('enabled'); $table->mediumText('body'); $table->timestamps(); $table->index('slug'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pages'); } }