fix bannedemails no effect

This commit is contained in:
xiaomlove
2022-11-24 18:51:03 +08:00
parent 56d4968c09
commit 54d9d5c796
13 changed files with 51 additions and 56 deletions

View File

@@ -1,38 +0,0 @@
<?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::create('taxonomies', function (Blueprint $table) {
$table->id();
$table->integer('mode')->default(0);
$table->string('name');
$table->string('torrent_field');
$table->string('image')->nullable(true);
$table->string('class_name')->nullable(true);
$table->integer('priority')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('taxonomies');
}
};