mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-02 20:29:20 +02:00
15 lines
245 B
PHP
15 lines
245 B
PHP
<?php
|
|
|
|
// 2023-11-11
|
|
// Add Guest page access
|
|
|
|
use MyAAC\Models\Pages;
|
|
|
|
$up = function () {
|
|
Pages::query()->where('access', 1)->update(['access' => 0]);
|
|
};
|
|
|
|
$down = function () {
|
|
Pages::query()->where('access', 0)->update(['access' => 1]);
|
|
};
|