mediumIncrements('id'); $table->unsignedMediumInteger('userid')->default(0); $table->dateTime('added')->nullable()->index('added'); $table->text('body')->nullable(); $table->string('title')->default(''); $table->enum('notify', ['yes', 'no'])->default('no'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('news'); } }