mirror of
https://github.com/itflow-org/itflow
synced 2026-07-26 18:27:14 +00:00
12 lines
426 B
PHP
12 lines
426 B
PHP
<?php
|
|
|
|
/*
|
|
* ITFlow - Database update to version 2.4.6 (from 2.4.5)
|
|
* Included by admin/database_updates.php - do not access directly
|
|
*/
|
|
|
|
defined('FROM_DB_UPDATER') || die("Direct file access is not allowed");
|
|
|
|
// Add Allow Deny Client Access to the Enforce Client Permissions
|
|
mysqli_query($mysqli, "ALTER TABLE `user_client_permissions` ADD COLUMN `permission_type` ENUM('allow','deny') NOT NULL DEFAULT 'allow'");
|