uplink42 / etmv2

A web based trading manager for the Eve Online MMORPG
https://www.evetrademaster.com
GNU Affero General Public License v3.0
20 stars 7 forks source link

Attempting to create a new user on a fresh install fails. #201

Open STRogers opened 6 years ago

STRogers commented 6 years ago

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

namenmalkav commented 6 years ago

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';