隨機ID我有一個測試表:Laravel 5.2 - 如何設置雄辯表
public function up()
{
Schema::create('besttts', function (Blueprint $table) {
$table->string('id')->primary()->index();
$table->string('tests')->nullable();
$table->timestamps();
});
}
我怎樣才能使「ID」不被遞增和自動填充?
遷移您呈現不使用的'主()'所以你覺得爲什麼它的自動遞增'增量()'? – Mjh
這只是一個例子...... –
你的例子包含你的問題是關於什麼。爲什麼在嘗試使用自己的代碼之前先要求? – Mjh