boolean('is_published') ->after('md') ->default(false); }); } public function down() { Schema::table('posts', function (Blueprint $table) { $table->dropColumn('is_published'); }); } }