Skip to content
Snippets Groups Projects
Verified Commit d81ca6a9 authored by Gabriel Zachmann's avatar Gabriel Zachmann
Browse files

fix space needed in the db for ipv6 addresses

parent 95347fa3
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,13 @@ ALTER TABLE Users
ALTER TABLE Users
ADD IF NOT EXISTS prefer_html_mail BOOL DEFAULT 1 NOT NULL;
ALTER TABLE AccessTokens
MODIFY COLUMN ip_created VARCHAR(42) NOT NULL;
ALTER TABLE MTokens
MODIFY COLUMN ip_created VARCHAR(42) NOT NULL;
ALTER TABLE MT_Events
MODIFY COLUMN ip VARCHAR(42) NOT NULL;
CREATE TABLE IF NOT EXISTS ActionReferencesUser
(
action_id BIGINT UNSIGNED NOT NULL, uid BIGINT UNSIGNED NOT NULL, CONSTRAINT ActionReferencesUser_FK
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment