increments('id'); $table->string('titleurl', 50)->unique(); $table->string('url', 120)->nullable(); $table->string('title'); $table->longText('main'); $table->tinyInteger('published')->default(0); $table->timestamps(); $table->softDeletes(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('articles'); } }