/utility/structure don´t work
Good day, I'm having problems with the tool /utility/structure I find several problems, but it does not solve them, I would like to know how I could solve these problems by hand or how I do so that /utility/structure works well
alter table
GDN_UserAuthenticationNonce
-- [Existing:Timestamptimestamp not null default CURRENT_TIMESTAMP, New:Timestamptimestamp not null]
changeTimestampTimestamptimestamp not null;alter table
GDN_UserAuthenticationToken
-- [Existing:Timestamptimestamp not null default CURRENT_TIMESTAMP, New:Timestamptimestamp not null]
changeTimestampTimestamptimestamp not null;alter table
GDN_AccessToken
-- [Existing:DateInsertedtimestamp not null default CURRENT_TIMESTAMP, New:DateInsertedtimestamp not null default current_timestamp]
changeDateInsertedDateInsertedtimestamp not null default current_timestamp,
-- [Existing:DateExpirestimestamp not null default CURRENT_TIMESTAMP, New:DateExpirestimestamp not null default current_timestamp]
changeDateExpiresDateExpirestimestamp not null default current_timestamp;update GDN_User
User
set Permissions = ''
where Permissions <> '';insert GDN_UserMeta
(UserID,Name,Value)
values ('0', 'stubcontent.record.locale', 'es');
Comments
Those are harmless. The Timestamp messages are new to me but I suspect this is a upper/lower spelling issue, but no problem.
The stubcontent message is also something I've never seen before, but it isn't needed, either.
You will never be able to get rid of that permissions note, but that isn't needed.
So just ignore all those messages and go on
ok thanks