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 2fc1eb4 commit 258b2b1Copy full SHA for 258b2b1
1 file changed
database/migrations/2020_01_01_000000_create_cache_table.php
@@ -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
22
+ $table->string('owner');
23
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