se agrega modelo de asistencias, correcciones de codigo qr y procesador de unsubscribes
This commit is contained in:
@@ -11,27 +11,19 @@ class prospectoStatusSeeder extends Seeder
|
||||
public function run(): void
|
||||
{
|
||||
DB::table('prospecto_status')->insert([
|
||||
'name' => 'activo',
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'name' => 'activo'
|
||||
]);
|
||||
|
||||
DB::table('prospecto_status')->insert([
|
||||
'name' => 'aspirante',
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'name' => 'aspirante'
|
||||
]);
|
||||
|
||||
DB::table('prospecto_status')->insert([
|
||||
'name' => 'inscrito',
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'name' => 'inscrito'
|
||||
]);
|
||||
|
||||
DB::table('prospecto_status')->insert([
|
||||
'name' => 'baja',
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'name' => 'baja'
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user