Skip to content

Commit

Permalink
Update db.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
jackveney authored Jul 20, 2024
1 parent 1e3c7c3 commit f4c071c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -514,8 +514,7 @@ CREATE TABLE `documents` (
`document_created_by` int(11) NOT NULL DEFAULT 0,
`document_updated_by` int(11) NOT NULL DEFAULT 0,
`document_client_id` int(11) NOT NULL DEFAULT 0,
`document_is_public` int(11) NOT NULL DEFAULT 0 COMMENT '0 = no, 1 = yes'

`document_is_public` int(11) NOT NULL DEFAULT 0 COMMENT '0 = no, 1 = yes',
PRIMARY KEY (`document_id`),
FULLTEXT KEY `document_content_raw` (`document_content_raw`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
Expand Down

0 comments on commit f4c071c

Please sign in to comment.