Skip to content

Commit

Permalink
install sql
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Jul 12, 2023
1 parent c43097a commit 8020bee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions installation/sql/mysql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,7 @@ CREATE TABLE IF NOT EXISTS `#__menu_types` (
`title` varchar(48) NOT NULL,
`description` varchar(255) NOT NULL DEFAULT '',
`client_id` int NOT NULL DEFAULT 0,
`ordering` int NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_menutype` (`menutype`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
Expand Down
1 change: 1 addition & 0 deletions installation/sql/postgresql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,7 @@ CREATE TABLE IF NOT EXISTS "#__menu_types" (
"title" varchar(48) NOT NULL,
"description" varchar(255) DEFAULT '' NOT NULL,
"client_id" int DEFAULT 0 NOT NULL,
"ordering" int NOT NULL DEFAULT 0,
PRIMARY KEY ("id"),
CONSTRAINT "#__menu_types_idx_menutype" UNIQUE ("menutype")
);
Expand Down

0 comments on commit 8020bee

Please sign in to comment.