Files
opensem/database/migrations/2022_01_07_233439_create_stats_tables.php
2022-01-18 00:08:04 +01:00

22 lines
474 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateStatsTables extends Migration
{
public function up()
{
Schema::create('stats_events', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('type');
$table->bigInteger('value');
$table->timestamps();
});
}
}