hanyuu/database/2024_07_27_025524_configurable_refresh_lifetime.php

9 lines
341 B
PHP

<?php
use Index\Db\DbConnection;
use Index\Db\Migration\DbMigration;
final class ConfigurableRefreshLifetime_20240727_025524 implements DbMigration {
public function migrate(DbConnection $conn): void {
$conn->execute('ALTER TABLE hau_apps ADD COLUMN app_refresh_lifetime INT UNSIGNED NULL DEFAULT NULL AFTER app_type');
}
}