A lot of things

This commit is contained in:
2026-06-16 16:21:43 +02:00
parent 4f9f6c63b3
commit 7e1e26f20b
126 changed files with 7917 additions and 204 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::connection('discord')->create('actions', function (Blueprint $table) {
$table->id();
$table->string('action');
$table->json('data');
$table->boolean('done')->default(false);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::connection('discord')->dropIfExists('actions');
}
};

View File

@@ -0,0 +1,28 @@
<?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::connection('discord')->table('actions', function (Blueprint $table) {
$table->string('errors')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::connection('discord')->table('actions', function (Blueprint $table) {
$table->dropColumn('errors');
});
}
};