added used counter

This commit is contained in:
2023-05-06 18:29:03 +10:00
parent 4076b138b9
commit 3d28e73369
2 changed files with 38 additions and 3 deletions

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('shortlinks', function (Blueprint $table) {
$table->bigInteger('used')->default(0);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('shortlinks', function (Blueprint $table) {
//
});
}
};