Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Ustaw pole Auto Increment od 1000 w laravel migracji 5.1

Powinno tak być (nie testowano).

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()
    {
    }
}

Aktualizacja

//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. Ponowne uruchamianie transakcji w MySQL po zakleszczeniu

  2. Jak sprawdzić, czy Ci pomyślnie wstawił dane?

  3. Aktualizuj wiele wierszy z różnymi wartościami w jednym zapytaniu - MySQL

  4. Jak utworzyć hierarchiczne rekurencyjne zapytanie MySQL?

  5. Uruchamianie klastra Galera na Kubernetes