Did I do something wrong with my below setup file to cause my addon to ONLY drop the xf_taylorj_blogs table? This is happening on multiple different local installs for myself and also another user as well.
PHP:
Read more
Читать далее...
PHP:
Код:
<?php
namespace TaylorJ\Blogs;
use XF\AddOn\AbstractSetup;
use XF\AddOn\StepRunnerInstallTrait;
use XF\AddOn\StepRunnerUninstallTrait;
use XF\AddOn\StepRunnerUpgradeTrait;
use XF\Db\Schema\Alter;
class Setup extends AbstractSetup
{
use StepRunnerInstallTrait;
use...
Read more
Читать далее...