You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
When trying to access routes without the migration being run MyBB2 throws a query exception:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mybb2.settings' doesn't exist (SQL: select settings.id, settings.name, settings.package, setting_values.value, setting_values.user_idfromsettingsleft joinsetting_valuesonsetting_values.setting_id=settings.idwhereuser_id is null)
This is due to the settings service provider loading and attempting to grab data from the database which then throws an error because the migration hasn't run yet. This prevents an auto-installer being created/working.
The text was updated successfully, but these errors were encountered:
When trying to access routes without the migration being run MyBB2 throws a query exception:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mybb2.settings' doesn't exist (SQL: selectsettings.id,settings.name,settings.package,setting_values.value,setting_values.user_idfromsettingsleft joinsetting_valuesonsetting_values.setting_id=settings.idwhereuser_idis null)
This is due to the settings service provider loading and attempting to grab data from the database which then throws an error because the migration hasn't run yet. This prevents an auto-installer being created/working.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When trying to access routes without the migration being run MyBB2 throws a query exception:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mybb2.settings' doesn't exist (SQL: select
settings.
id,
settings.
name,
settings.
package,
setting_values.
value,
setting_values.
user_idfrom
settingsleft join
setting_valueson
setting_values.
setting_id=
settings.
idwhere
user_idis null)
This is due to the settings service provider loading and attempting to grab data from the database which then throws an error because the migration hasn't run yet. This prevents an auto-installer being created/working.
The text was updated successfully, but these errors were encountered: