Skip to content

Commit b17c63e

Browse files
authored
Merge pull request #181 from SIT-DigiCre/fix/mattermost_channel_name_length
Fix mattermost channel name length
2 parents 95d615e + 6301035 commit b17c63e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

schema/mattermost_remind_post.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
CREATE TABLE mattermost_remind_post
22
(
33
id BINARY(16) NOT NULL DEFAULT (UUID_TO_BIN(UUID())),
4-
user_name VARCHAR(16) NOT NULL,
5-
channel_name VARCHAR(16) NOT NULL,
4+
user_name VARCHAR(255) NOT NULL,
5+
channel_name VARCHAR(255) NOT NULL,
66
body TEXT NOT NULL,
77
remind_date DATETIME NOT NULL,
88
posted BOOLEAN NOT NULL DEFAULT false,

0 commit comments

Comments
 (0)