summaryrefslogtreecommitdiff
path: root/src/database/chat.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/database/chat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/chat.rs b/src/database/chat.rs
index 99ec86c..87b7154 100644
--- a/src/database/chat.rs
+++ b/src/database/chat.rs
@@ -35,7 +35,7 @@ impl Database {
user_id INTEGER NOT NULL,
room_id INTEGER NOT NULL,
date INTEGER NOT NULL,
- content VARCHAR(500) NOT NULL,
+ content VARCHAR(5000) NOT NULL,
FOREIGN KEY(user_id) REFERENCES users(user_id),
FOREIGN KEY(room_id) REFERENCES chat_rooms(room_id)
);