HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Vanilla 2.1 Structure

AnonymooseAnonymoose ✭✭
edited December 2014 in Feedback

Running dashboard/utility/structure/

The following structure changes are required for your database.

alter table `GDN_KarmaRules`
/* Existing: `RuleID` int not null auto_increment, New: `RuleID` int not null */
change `RuleID` `RuleID` int not null;

alter table `GDN_KarmaRulesTally`
/* Existing: `TallyID` int not null auto_increment, New: `TallyID` int not null */
change `TallyID` `TallyID` int not null;

alter table `GDN_MarketProduct`
/* Existing: `ProductID` int not null auto_increment, New: `ProductID` varchar(100) not null */
change `ProductID` `ProductID` varchar(100) not null;

Comments

  • Options
    hgtonighthgtonight ∞ · New Moderator

    What is the question?

    Search first

    Check out the Documentation! We are always looking for new content and pull requests.

    Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.

  • Options

    The Marketplace plugin creates invalid tables that then show up in utility/structure as requiring fixing.

  • Options

    so this was a protip. :wink:

    maybe the title could have been

    "A suggestion on how to fix marketplace in Vanilla 2.1"

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Options

    It doesn't fix anything, as a few seconds later, the same error comes back when you recheck.

Sign In or Register to comment.