mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 17:59:22 +02:00
9 lines
133 B
PHP
9 lines
133 B
PHP
<?php
|
|
|
|
// 2023-11-11
|
|
// Add Guest page access
|
|
|
|
use MyAAC\Models\Pages;
|
|
|
|
Pages::query()->where('access', 1)->update(['access' => 0]);
|