आपको एक और माइग्रेशन फ़ाइल बनाने की ज़रूरत है - और उसे उसमें रखें:
भागो
Laravel 4: php artisan migrate:make rename_stnk_column
Laravel 5: php artisan make:migration rename_stnk_column
फिर नई माइग्रेशन फ़ाइल के अंदर जगह:
class RenameStnkColumn extends Migration
{
public function up()
{
Schema::table('stnk', function(Blueprint $table) {
$table->renameColumn('id', 'id_stnk');
});
}
public function down()
{
Schema::table('stnk', function(Blueprint $table) {
$table->renameColumn('id_stnk', 'id');
});
}
}