fix install scripts

This commit is contained in:
crispycat 2024-09-29 23:47:11 -04:00
parent f1a4156e71
commit 308201b234

View File

@ -1,4 +1,4 @@
<?php
$this->app->database->addColumn("assets", "state" $this->app->database::TYPE_INT, false);
$this->app->database->addColumn("assets", "state", $this->app->database::TYPE_INT, false);
$this->app->database->update("assets", ["state" => \Crispage\Framework\Asset::STATE_PERMANENT]);
?>