mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
change panel table id to int
This commit is contained in:
@@ -17,7 +17,7 @@ class CreateAdminpanelTable extends Migration
|
||||
return;
|
||||
}
|
||||
Schema::create('adminpanel', function (Blueprint $table) {
|
||||
$table->tinyIncrements('id');
|
||||
$table->id();
|
||||
$table->string('name', 128)->default('');
|
||||
$table->string('url')->default('');
|
||||
$table->string('info')->default('');
|
||||
|
||||
@@ -17,7 +17,7 @@ class CreateModpanelTable extends Migration
|
||||
return;
|
||||
}
|
||||
Schema::create('modpanel', function (Blueprint $table) {
|
||||
$table->tinyIncrements('id');
|
||||
$table->id();
|
||||
$table->string('name', 128)->default('');
|
||||
$table->string('url')->default('');
|
||||
$table->string('info')->default('');
|
||||
|
||||
@@ -17,7 +17,7 @@ class CreateSysoppanelTable extends Migration
|
||||
return;
|
||||
}
|
||||
Schema::create('sysoppanel', function (Blueprint $table) {
|
||||
$table->tinyIncrements('id');
|
||||
$table->id();
|
||||
$table->string('name', 128)->default('');
|
||||
$table->string('url')->default('');
|
||||
$table->string('info')->default('');
|
||||
|
||||
Reference in New Issue
Block a user