updated sql script

This commit is contained in:
dashevchenko 2023-02-15 18:58:26 +02:00
parent 453e81e57e
commit e046e8caa6

View File

@ -31,7 +31,6 @@ CREATE TABLE IF NOT EXISTS user_settings (
CONSTRAINT fk_user_id FOREIGN KEY (user_id) REFERENCES tb_user(id) ON DELETE CASCADE
);
-- move password history from user to user_credentials table
ALTER TABLE user_credentials
ADD COLUMN IF NOT EXISTS additional_info varchar;