* restructure setup to allow for self contained setup steps to self register (just the sql for now) * should ease adding new scripts in future
18 lines
299 B
PHP
18 lines
299 B
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
if (!CLI)
|
|
die('not in cli mode');
|
|
|
|
|
|
SqlGen::register(new class extends SetupScript
|
|
{
|
|
use TrDBCcopy;
|
|
|
|
protected $command = 'achievementcriteria';
|
|
protected $dbcSourceFiles = ['achievement_criteria'];
|
|
});
|
|
|
|
?>
|