Файл: database/upgrades/2026_05_18_000003_remove_socials.php
Строк: 26
<?php
declare(strict_types=1);
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
return new class extends Migration {
public function up(): void
{
Schema::dropIfExists('socials');
}
public function down(): void
{
Schema::create('socials', static function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('user_id');
$table->string('network', 50)->default('');
$table->string('network_id', 100)->default('');
$table->timestamps();
});
}
};