Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
STRogers opened this issue Jul 31, 2017 · 1 comment
Open

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

STRogers opened this issue Jul 31, 2017 · 1 comment

Comments

@STRogers
Copy link

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
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants