mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
fix remove claim
This commit is contained in:
@@ -13,6 +13,9 @@ return new class extends Migration
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
if (Schema::hasTable('complains')) {
|
||||
return;
|
||||
}
|
||||
Schema::create('complains', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->char('uuid', 36);
|
||||
|
||||
@@ -13,6 +13,9 @@ return new class extends Migration
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
if (Schema::hasTable('complain_replies')) {
|
||||
return;
|
||||
}
|
||||
Schema::create('complain_replies', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->integer('complain');
|
||||
|
||||
Reference in New Issue
Block a user