• 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

Bob

Developer
Staff member
// ################################ UPGRADE TO 2.3.7 ##################

Schema changes:

Code:
    public function upgrade2030770Step1()
    {
        $this->alterTable('xf_xa_cas_ad', function (Alter $table)
        {
            $table->addColumn('featured', 'tinyint')->setDefault(0)->after('tags');
        });
    }   
    
    public function upgrade2030770Step2()
    {
        $this->alterTable('xf_xa_cas_category', function (Alter $table)
        {
            $table->addColumn('auto_feature', 'tinyint')->setDefault(0)->after('location_on_list_display_type');
        });
    }
    
    public function upgrade2030770Step4(): void
    {
        $this->dropTable('xf_xa_cas_ad_feature');
        
        $this->alterTable('xf_user', function(Alter $table)
        {
            $table->dropColumns(['xa_cas_featured_ad_count']);
        });
    }
 
Upvote 0
This suggestion has been implemented. Votes are no longer accepted.
Back
Top