URL Shortener
1.0
A Laravel-based URL shortener application
Chargement...
Recherche...
Aucune correspondance
0001_01_01_000001_create_cache_table.php
Aller à la documentation de ce fichier.
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
{
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'
)->index();
18
});
19
20
Schema::create(
'cache_locks'
,
function
(Blueprint $table) {
21
$table->string(
'key'
)->primary();
22
$table->string(
'owner'
);
23
$table->integer(
'expiration'
)->index();
24
});
25
}
26
30
public
function
down
(): void
31
{
32
Schema::dropIfExists(
'cache'
);
33
Schema::dropIfExists(
'cache_locks'
);
34
}
35
};
Migration
Definition
0001_01_01_000000_create_users_table.php:8
Migration\down
down()
Reverse the migrations.
Definition
0001_01_01_000001_create_cache_table.php:30
Migration\up
up()
Run the migrations.
Definition
0001_01_01_000001_create_cache_table.php:12
database
migrations
0001_01_01_000001_create_cache_table.php
Généré le Samedi 7 Février 2026 12:00:11 pour URL Shortener par
1.9.8