Jump to content

TABLE MISSING


Andrea D.

Recommended Posts

Download the latest version released few minutes ago or run the following queries:

DROP TABLE IF EXISTS `bx_paypalsubscriptions`;

CREATE TABLE `bx_paypalsubscriptions` (
    `subscription_id` varchar(255) NOT NULL,
    `data` text DEFAULT NULL,
    `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

ALTER TABLE `bx_paypalsubscriptions`
    ADD PRIMARY KEY (`subscription_id`) USING BTREE;

 

Link to comment
Share on other sites

 

7 minutes ago, Kian said:

Download the latest version released few minutes ago or run the following queries:


DROP TABLE IF EXISTS `bx_paypalsubscriptions`;

CREATE TABLE `bx_paypalsubscriptions` (
    `subscription_id` varchar(255) NOT NULL,
    `data` text DEFAULT NULL,
    `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

ALTER TABLE `bx_paypalsubscriptions`
    ADD PRIMARY KEY (`subscription_id`) USING BTREE;

 

Thank you Kian.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated