diff options
-rw-r--r-- | Database.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Database.md b/Database.md index 5e49fed..58d378e 100644 --- a/Database.md +++ b/Database.md @@ -10,9 +10,8 @@ In this table are all created page objects stored and will be removed if the adm * Column `body`: Contains the body of the page in the markdown format * Column `argv`: Contains the optional argument string or is `NULL` -## Table `post` [`MyISAM`] -In this table are all created post objects stored and will be removed if the admin deletes them. -The table type is `MyISAM` because the fulltext search doesn't work with `InnoDB` in MySQL < `5.6`. +## Table `post` [`InnoDB`] +In this table are all created post objects stored and will be removed if the admin deletes them. * Column `id`: Contains the unique primary ID to identify a post * Column `time_insert`: Contains the time stamp (Format: `YYYY-MM-DD HH:II:SS`) when the post was created |