1
0
mirror of https://github.com/scsibug/nostr-rs-relay.git synced 2025-03-16 18:10:28 -04:00

fix: postgres create index before column exists

This commit is contained in:
thesimplekid 2023-01-29 17:34:57 -05:00 committed by Greg Heartsfield
parent 1804bee912
commit 6f1a4e7d76

@ -116,7 +116,6 @@ CREATE TABLE "tag" (
);
CREATE INDEX tag_event_id_idx ON tag USING btree (event_id, name);
CREATE INDEX tag_value_idx ON tag USING btree (value);
CREATE INDEX tag_value_hex_idx ON tag USING btree (value_hex);
-- NIP-05 Verfication table
CREATE TABLE "user_verification" (