3
0

Fix (missing comma

This commit is contained in:
Denis Arh 2018-08-08 12:58:43 +02:00
parent d12acbf756
commit d50eefba9f

View File

@ -82,7 +82,7 @@ CREATE TABLE channel_members (
type ENUM ('owner', 'member') NOT NULL DEFAULT 'member',
created_at DATETIME NOT NULL DEFAULT NOW(),
updated_at DATETIME NULL
updated_at DATETIME NULL,
PRIMARY KEY (rel_channel, rel_user)
);