hanyuu/database/2024_07_27_025524_configurable_refresh_lifetime.php

10 lines
341 B
PHP
Raw Normal View History

2024-07-27 03:42:33 +00:00
<?php
2024-11-13 23:58:43 +00:00
use Index\Db\DbConnection;
use Index\Db\Migration\DbMigration;
2024-07-27 03:42:33 +00:00
2024-11-13 23:58:43 +00:00
final class ConfigurableRefreshLifetime_20240727_025524 implements DbMigration {
public function migrate(DbConnection $conn): void {
2024-07-27 03:42:33 +00:00
$conn->execute('ALTER TABLE hau_apps ADD COLUMN app_refresh_lifetime INT UNSIGNED NULL DEFAULT NULL AFTER app_type');
}
}