Multiple enhancements to interactive messages, moved messages to Notifications, send netmail back when invalid packet password
This commit is contained in:
25
database/migrations/2023_07_21_162133_flags_increase_int.php
Normal file
25
database/migrations/2023_07_21_162133_flags_increase_int.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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
|
||||
{
|
||||
DB::statement('ALTER TABLE netmails ALTER COLUMN flags TYPE integer');
|
||||
DB::statement('ALTER TABLE echomails ALTER COLUMN flags TYPE integer');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
// Noop
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user