Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Setel bidang Peningkatan Otomatis mulai dari 1000 di laravel migrasi 5.1

Seharusnya seperti ini (tidak diuji).

use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;

class MyTableMigration extends Migration {

     /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        $statement = "ALTER TABLE MY_TABLE AUTO_INCREMENT = 111111;";
        DB::unprepared($statement);
    }

    /**
    * Reverse the migrations.
    *
    * @return void
    */
    public function down()
    {
    }
}

Perbarui

//Your migrations here:
Schema::create('users', function (Blueprint $table) {
    $table->bigIncrements('id')->unsigned();
    $table->integer('qualification_id')->nullable();
    $table->integer('experience_id')->nullable();
});

//then set autoincrement to 1000
//after creating the table
DB::update("ALTER TABLE users AUTO_INCREMENT = 1000;");


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Cara Mengelola MySQL - untuk Oracle DBA

  2. Menggunakan klausa MySQL IN sebagai semua inklusif (DAN bukannya OR)

  3. Praktik terbaik penghapusan lunak (PHP/MySQL)

  4. Apa Setara MySQL dari STUFF() di SQL Server?

  5. Bagaimana menemukan kapan server MySQL/MariaDB dimulai