mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
fdfed3d7db
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
5 lines
169 B
SQL
5 lines
169 B
SQL
ALTER TABLE "channel_messages"
|
|
ADD "nonce" UUID NOT NULL DEFAULT gen_random_uuid();
|
|
|
|
CREATE UNIQUE INDEX "index_channel_messages_nonce" ON "channel_messages" ("nonce");
|