You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 2, 2022. It is now read-only.
CREATE TABLE
category
(id
INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,title
VARCHAR(255) NOT NULL COLLATE 'utf8mb4_unicode_ci',parent_category_id
INT(10) UNSIGNED NULL DEFAULT NULL,enabled
TINYINT(1) NOT NULL DEFAULT '1',title_en
VARCHAR(255) NOT NULL COLLATE 'utf8mb4_unicode_ci',PRIMARY KEY (
id
) USING BTREE,INDEX
category_parent_category_id_foreign
(parent_category_id
) USING BTREE,CONSTRAINT
category_parent_category_id_foreign
FOREIGN KEY (parent_category_id
) REFERENCESinar_local_refactored
.category
(id
) ON UPDATE RESTRICT ON DELETE RESTRICT)
what I'm doing wrong? you example in lib doesn not show initial DB structure.
The text was updated successfully, but these errors were encountered: