push notification setting and update pages with PDO

This commit is contained in:
2026-07-31 14:34:26 +02:00
parent 8ad8d279e6
commit b553f7e9e9
10 changed files with 1971 additions and 2290 deletions
@@ -0,0 +1,18 @@
<?php
use Phinx\Migration\AbstractMigration;
final class AddPushNotificationToAuthUsers extends AbstractMigration
{
public function change(): void
{
$this->table('auth_users')
->addColumn('pushnotification', 'char', [
'limit' => 1,
'null' => false,
'default' => 'Y',
'comment' => 'Accetta notifiche push app mobile (Y/N)',
])
->update();
}
}