Skip to content

Commit b3a329e

Browse files
committed
Add database CACHE
1 parent 1c65030 commit b3a329e

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DB_USERNAME=metaman
1616
DB_PASSWORD=
1717

1818
BROADCAST_DRIVER=log
19-
CACHE_DRIVER=file
19+
CACHE_DRIVER=database
2020
QUEUE_CONNECTION=database
2121
SESSION_DRIVER=file
2222
SESSION_LIFETIME=120
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*/
12+
public function up(): void
13+
{
14+
Schema::create('cache', function (Blueprint $table) {
15+
$table->string('key')->primary();
16+
$table->mediumText('value');
17+
$table->integer('expiration');
18+
});
19+
20+
Schema::create('cache_locks', function (Blueprint $table) {
21+
$table->string('key')->primary();
22+
$table->string('owner');
23+
$table->integer('expiration');
24+
});
25+
}
26+
27+
/**
28+
* Reverse the migrations.
29+
*/
30+
public function down(): void
31+
{
32+
Schema::dropIfExists('cache');
33+
Schema::dropIfExists('cache_locks');
34+
}
35+
};

0 commit comments

Comments
 (0)