• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Updated Schema Changes/Updates

Bob

Developer
Staff member
// ################################ UPGRADE TO 2.3.8 ##################

Schema changes:

PHP:
    public function upgrade2030870Step1()
    {
        $this->alterTable('xf_xa_ams_category', function (Alter $table)
        {
            $table->addColumn('auto_feature', 'tinyint')->setDefault(0)->after('display_who_read_this_article');
        });
    }

PHP:
    public function upgrade2030870Step2()
    {
        $this->alterTable('xf_xa_ams_article', function (Alter $table)
        {
            $table->addColumn('featured', 'tinyint')->setDefault(0)->after('tags');
        });
    }

PHP:
    public function upgrade2030870Step3()
    {
        $this->alterTable('xf_xa_ams_series', function (Alter $table)
        {
            $table->addColumn('featured', 'tinyint')->setDefault(0)->after('tags');
        });
    }

PHP:
    public function upgrade2030870Step6(): void
    {
        $this->dropTable('xf_xa_ams_article_feature');
    
        $this->dropTable('xf_xa_ams_series_feature');
    }
 
Upvote 0
This suggestion has been implemented. Votes are no longer accepted.
Back
Top