sql >> Databasteknik >  >> RDS >> Mysql

Ange Auto Increment-fält från 1000 i migration laravel 5.1

Det ska vara så här (ej testat).

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

Uppdatera

//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. Hur tar jag bort rader med data från mysql-tabellen automatiskt 24 timmar efter data in i tabellen?

  2. Hur får man max två värden i MySQL?

  3. Välj från mysql in i variabeln VB.NET

  4. Rensa MySQL-frågecache utan att starta om servern