unsignedTinyInteger('states')->after('supplier'); $table->string('introduction')->after('name'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // Schema::table('vaccines', function (Blueprint $table) { $table->dropColumn('states'); $table->dropColumn('introduction'); }); } }