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
This issue is related to the schema.sql be old need 2 new columns in user: ignore_buy_tax and ignore_sell_tax
Can be added manually:
ALTER TABLE user ADD ignore_buy_tax TINYINT NOT NULL DEFAULT '0';
ALTER TABLE user ADD ignore_sell_tax TINYINT NOT NULL DEFAULT '0';
The column is not in the schema file.
Unknown column 'ignore_buy_tax' in 'field list'
INSERT INTO
user
(username
,registration_date
,password
,reports
,email
,salt
,default_buy_behaviour
,default_sell_behaviour
,cross_character_profits
,ignore_citadel_tax
,ignore_station_tax
,ignore_outpost_tax
,ignore_buy_tax
,ignore_sell_tax
,login_count
,updating
) VALUES (....)Filename: models/Register_model.php
Line Number: 199
The text was updated successfully, but these errors were encountered: