updated table structure for photobooth/sparkbooth settings. now there's a separate table for it. update all references and tests. also fixed the notification panel and the lightbox in the guest app.
This commit is contained in:
@@ -22,7 +22,7 @@ class DatabaseSeeder extends Seeder
|
||||
EventTypesSeeder::class,
|
||||
EmotionsSeeder::class,
|
||||
TaskCollectionsSeeder::class,
|
||||
InviteLayoutSeeder::class,
|
||||
|
||||
]);
|
||||
|
||||
$this->call([
|
||||
|
||||
17
database/seeders/EventPhotoboothSettingSeeder.php
Normal file
17
database/seeders/EventPhotoboothSettingSeeder.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\EventPhotoboothSetting;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class EventPhotoboothSettingSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
EventPhotoboothSetting::factory()->create();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user