Jaxel
Well-known member
My addon is now up to version 2016.
In my setup file I have the following function:
A user reported installing version 2016 as a fresh install, the above function did not run.
Do XF2 upgrade functions not cascade on installs?
In my setup file I have the following function:
Code:
public function upgrade2012Step1()
{
$this->schemaManager()->alterTable('xf_user_option', function(Alter $table)
{
$table->addColumn('discord_options', 'blob')->nullable();
});
}
A user reported installing version 2016 as a fresh install, the above function did not run.
Do XF2 upgrade functions not cascade on installs?