table('auth_users'); $table ->addColumn('notify_email', 'boolean', [ 'default' => true, 'null' => false, 'after' => 'announcements_last_read_at', 'comment' => 'Preferenza notifiche via email', ]) ->addColumn('notify_webapp', 'boolean', [ 'default' => true, 'null' => false, 'after' => 'notify_email', 'comment' => 'Preferenza notifiche in webapp', ]) ->update(); } }