मेरे पास उल्लेखित कॉलम के रूप में कॉलम हैं:
public function up()
{
Schema::create('stnk', function(Blueprint $table)
{
$table->increments('id');
$table->string('no_reg', 50)->unique();
$table->string('no_bpkb', 50)->unique();
$table->string('nama_pemilik', 100);
$table->string('alamat');
$table->string('merk', 50);
$table->string('tipe', 50);
$table->string('jenis', 50);
$table->smallInteger('tahun_pembuatan');
$table->smallInteger('tahun_registrasi');
$table->smallInteger('isi_silinder');
$table->string('no_rangka', 50);
$table->string('no_mesin', 50);
$table->string('warna', 50);
$table->string('bahan_bakar', 50);
$table->string('warna_tnkb', 50);
$table->string('kode_lokasi', 50);
$table->date('berlaku_sampai');
$table->timestamps();
$table->index('created_at');
$table->index('updated_at');
});
}
मैंने स्टनर टेबल के लिए सीडर बनाया है
अब मैं नाम बदलना चाहते हैं id
करने के लिए id_stnk
।
मैं एक जोड़ दिया है "सिद्धांत / dbal" में "संगीतकार" और एक कर composer update
।
मैंने प्रवास किया है php artisan migration:make rename_column
।
फिर मैंने rename_column में नई विधि जोड़ी है:
Schema::table('stnk', function(Blueprint $table)
{
$table->renameColumn('id', 'id_stnk');
});
और फिर मैंने कमांड चलाने की कोशिश की है, php artisan migrate
लेकिन मुझे उल्लेख के अनुसार त्रुटि मिली:
[Ulluminate\Database\QueryException]
SQLSTATE[HY000]: General error: 1025 Error on rename of './my_database/#sql -447_33' to './my_database/stnk' (error: 150) (SQL: ALTER TABLE stnk CHANGE id id_stnk INT UNSIGENED AUTO_INCREMENT NOT NULL)
[PDOException]
SQLSTATE[HY000]: General error: 1025 Error on rename of './my_database/#sql -447_33' to './my_database/stnk' (error: 150)