sql >> Databáze >  >> RDS >> Mysql

Nastavte začátek pole Auto Increment od 1000 v laravel migrace 5.1

Mělo by to být takto (netestováno).

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

Aktualizovat

//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. CodeIgniter:Uložení obrázku do databáze?

  2. Sečtení sloupce odděleného čárkou v MySQL 4 (ne 5)

  3. Jak vytvořit databázi MySQL ze souboru výpisu ve skriptu očekávání/TCL?

  4. Java/Mysql..SQLException:Tabulka musí mít alespoň 1 sloupec SQLState:42000 VendorError:1113