We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a925110 commit 4b881cfCopy full SHA for 4b881cf
src/Illuminate/Cache/Console/stubs/cache.stub
@@ -14,13 +14,13 @@ return new class extends Migration
14
Schema::create('cache', function (Blueprint $table) {
15
$table->string('key')->primary();
16
$table->mediumText('value');
17
- $table->integer('expiration');
+ $table->integer('expiration')->index();
18
});
19
20
Schema::create('cache_locks', function (Blueprint $table) {
21
22
$table->string('owner');
23
24
25
}
26
0 commit comments