text('tags')->nullable()->default(null)->after('description'); $table->text('link')->nullable()->default(null)->after('description'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('components', function (Blueprint $table) { $table->dropColumn('tags'); $table->dropColumn('link'); }); } }