Revert "Feature/harim data"

This commit is contained in:
Amir Ghasempoor
2025-10-18 09:22:18 +03:30
committed by GitHub
parent 2019e06a88
commit 13604bdeb3
7 changed files with 6 additions and 38 deletions

View File

@@ -1,29 +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.
*/
public function up(): void
{
Schema::table('harims', function (Blueprint $table) {
$table->longText('data')->nullable();
$table->string('token', 255);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('harims', function (Blueprint $table) {
$table->dropColumn(['data', 'token']);
});
}
};