mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 08:32:14 +00:00
added indexes to the database
This commit is contained in:
@@ -14,7 +14,7 @@ class CreateSettingsTable extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::create('settings', function (Blueprint $table) {
|
||||
$table->string('name')->unique()->primary();
|
||||
$table->string('name')->unique()->primary()->index();
|
||||
$table->longText('value')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user