Fossil SCM
Added lmtime to www/chat.md and typo fix.
Commit
92d74f8fb6621e6cca66a3a3732c09b5f7361f5669d2c3f40a71fb5f68bb00bf
Parent
adc90d82f30e301…
1 file changed
+4
-3
+4
-3
| --- www/chat.md | ||
| +++ www/chat.md | ||
| @@ -160,21 +160,22 @@ | ||
| 160 | 160 | |
| 161 | 161 | ~~~ |
| 162 | 162 | CREATE TABLE repository.chat( |
| 163 | 163 | msgid INTEGER PRIMARY KEY AUTOINCREMENT, |
| 164 | 164 | mtime JULIANDAY, |
| 165 | + ltime TEXT, | |
| 165 | 166 | xfrom TEXT, |
| 166 | 167 | xmsg TEXT, |
| 167 | - file BLOB, | |
| 168 | 168 | fname TEXT, |
| 169 | 169 | fmime TEXT, |
| 170 | - mdel INT) | |
| 170 | + mdel INT, | |
| 171 | + file BLOB) | |
| 171 | 172 | ); |
| 172 | 173 | ~~~ |
| 173 | 174 | |
| 174 | 175 | The CHAT table is not cross-linked with any other tables in the repository |
| 175 | -schema. An administrator can "DELETE TABLE chat;" at any time, without | |
| 176 | +schema. An administrator can "DROP TABLE chat;" at any time, without | |
| 176 | 177 | harm (apart from deleting all chat history, of course). The CHAT table |
| 177 | 178 | is dropped when running [fossil scrub --verily](/help?cmd=scrub). |
| 178 | 179 | |
| 179 | 180 | On the server-side, message text is stored exactly as entered by the |
| 180 | 181 | users. The /chat-poll page queries the CHAT table and constructs a |
| 181 | 182 |
| --- www/chat.md | |
| +++ www/chat.md | |
| @@ -160,21 +160,22 @@ | |
| 160 | |
| 161 | ~~~ |
| 162 | CREATE TABLE repository.chat( |
| 163 | msgid INTEGER PRIMARY KEY AUTOINCREMENT, |
| 164 | mtime JULIANDAY, |
| 165 | xfrom TEXT, |
| 166 | xmsg TEXT, |
| 167 | file BLOB, |
| 168 | fname TEXT, |
| 169 | fmime TEXT, |
| 170 | mdel INT) |
| 171 | ); |
| 172 | ~~~ |
| 173 | |
| 174 | The CHAT table is not cross-linked with any other tables in the repository |
| 175 | schema. An administrator can "DELETE TABLE chat;" at any time, without |
| 176 | harm (apart from deleting all chat history, of course). The CHAT table |
| 177 | is dropped when running [fossil scrub --verily](/help?cmd=scrub). |
| 178 | |
| 179 | On the server-side, message text is stored exactly as entered by the |
| 180 | users. The /chat-poll page queries the CHAT table and constructs a |
| 181 |
| --- www/chat.md | |
| +++ www/chat.md | |
| @@ -160,21 +160,22 @@ | |
| 160 | |
| 161 | ~~~ |
| 162 | CREATE TABLE repository.chat( |
| 163 | msgid INTEGER PRIMARY KEY AUTOINCREMENT, |
| 164 | mtime JULIANDAY, |
| 165 | ltime TEXT, |
| 166 | xfrom TEXT, |
| 167 | xmsg TEXT, |
| 168 | fname TEXT, |
| 169 | fmime TEXT, |
| 170 | mdel INT, |
| 171 | file BLOB) |
| 172 | ); |
| 173 | ~~~ |
| 174 | |
| 175 | The CHAT table is not cross-linked with any other tables in the repository |
| 176 | schema. An administrator can "DROP TABLE chat;" at any time, without |
| 177 | harm (apart from deleting all chat history, of course). The CHAT table |
| 178 | is dropped when running [fossil scrub --verily](/help?cmd=scrub). |
| 179 | |
| 180 | On the server-side, message text is stored exactly as entered by the |
| 181 | users. The /chat-poll page queries the CHAT table and constructs a |
| 182 |