mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Fix #1550 mark counter_site_status table as deleted
This commit is contained in:
parent
34280af0f0
commit
c26325efee
5 changed files with 28 additions and 5 deletions
|
|
@ -61,6 +61,12 @@ class DBTableParser extends BaseParser
|
|||
$table->name = strval($xml['name']);
|
||||
}
|
||||
|
||||
$deleted = strval($xml['deleted']);
|
||||
if ($deleted !== '')
|
||||
{
|
||||
$table->deleted = toBool($deleted);
|
||||
}
|
||||
|
||||
// Load columns.
|
||||
foreach ($xml->column as $column_info)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue