XF 2.0 Upgrade steps getting skipped?

Jaxel

Well-known member
I releases version 2011 of my addon... everything working fine... In the next version, I put in the following upgrade step:
Code:
    public function upgrade2012Step1()
    {
        $this->schemaManager()->alterTable('xf_user_option', function(Alter $table)
        {
            $table->addColumn('discord_options', 'blob')->nullable();
        });
    }
I installed 2012 on my personal forums, without any issue.

However, I did NOT release 2012 to the public. Instead, I went straight to 2013 for the public. So people upgraded from 2011->2013.

Some people are reporting however, that the upgrade step for 2012 did not run.

Is this normal?
 
Top Bottom