mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
Clean up handling of table schemas that are marked as deleted in XML
This commit is contained in:
parent
14cb0e7977
commit
f99102ca33
3 changed files with 6 additions and 6 deletions
|
|
@ -61,10 +61,10 @@ class DBTableParser extends BaseParser
|
|||
$table->name = strval($xml['name']);
|
||||
}
|
||||
|
||||
$deleted = strval($xml['deleted']);
|
||||
if ($deleted !== '')
|
||||
$is_deleted = strval($xml['deleted']);
|
||||
if ($is_deleted !== '')
|
||||
{
|
||||
$table->deleted = toBool($deleted);
|
||||
$table->is_deleted = toBool($is_deleted);
|
||||
}
|
||||
|
||||
// Load columns.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue