Added Breeze

This commit is contained in:
amikhaylov
2026-05-18 23:43:26 +03:00
parent 0c06d83b0b
commit c9a514b0fa
17 changed files with 249 additions and 59 deletions
@@ -11,12 +11,27 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('contact_roles', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('description')->nullable();
$table->timestamp('created_at')->default(now());
$table->timestamp('updated_at')->useCurrent();
});
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('last_name')->nullable();
$table->string('phone')->nullable();
$table->string('vk_id')->nullable();
$table->string('email')->unique();
$table->boolean('use_as_contact')->default(false);
$table->integer('contact_role')->default(0);
$table->string('img_small')->nullable();
$table->string('img_large')->nullable();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('password')->nullable();
$table->rememberToken();
$table->timestamps();
});
@@ -42,6 +57,7 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('contact_roles');
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
+8 -4
View File
@@ -2,7 +2,7 @@
namespace Database\Seeders;
use App\Models\User;
use App\Models\ORM\ContactRole;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
@@ -17,9 +17,13 @@ class DatabaseSeeder extends Seeder
{
// User::factory(10)->create();
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
ContactRole::insert([
[ 'name' => 'tech', 'description' => 'Технические вопросы' ],
[ 'name' => 'org', 'description' => 'Организация концертов' ]
]);
$this->call([
UserSeeder::class,
]);
}
}