increments('id'); $table->string('title'); $table->boolean('online'); $table->integer('position')->default(0); $table->datetime('date')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('breaking_news'); } }