mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 05:15:00 +00:00
79fb3aa8af
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
4 lines
169 B
SQL
4 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");
|