This commit is contained in:
2026-03-22 22:44:58 +01:00
parent 5a5b9f7227
commit d09bca6326
13 changed files with 118 additions and 13 deletions

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('ticker_messages', function (Blueprint $table) {
$table->id();
$table->string('language');
$table->string('message');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('ticker_messages');
}
};