@@ -848,63 +848,63 @@ ALTER TABLE ONLY storage.objects
848848-- Name: audit_logs_instance_id_idx; Type: INDEX; Schema: auth; Owner: -
849849--
850850
851- CREATE INDEX audit_logs_instance_id_idx ON auth .audit_log_entries USING btree (instance_id);
851+ CREATE INDEX CONCURRENTLY IF NOT EXISTS audit_logs_instance_id_idx ON auth .audit_log_entries USING btree (instance_id);
852852
853853
854854--
855855-- Name: refresh_tokens_instance_id_idx; Type: INDEX; Schema: auth; Owner: -
856856--
857857
858- CREATE INDEX refresh_tokens_instance_id_idx ON auth .refresh_tokens USING btree (instance_id);
858+ CREATE INDEX CONCURRENTLY IF NOT EXISTS refresh_tokens_instance_id_idx ON auth .refresh_tokens USING btree (instance_id);
859859
860860
861861--
862862-- Name: refresh_tokens_instance_id_user_id_idx; Type: INDEX; Schema: auth; Owner: -
863863--
864864
865- CREATE INDEX refresh_tokens_instance_id_user_id_idx ON auth .refresh_tokens USING btree (instance_id, user_id);
865+ CREATE INDEX CONCURRENTLY IF NOT EXISTINDEX CONCURRENTLY IF NOT EXISTS refresh_tokens_instance_id_user_id_idx ON auth .refresh_tokens USING btree (instance_id, user_id);
866866
867867
868868--
869869-- Name: refresh_tokens_token_idx; Type: INDEX; Schema: auth; Owner: -
870870--
871871
872- CREATE INDEX refresh_tokens_token_idx ON auth .refresh_tokens USING btree (token);
872+ CREATE INDEX CONCURRENTLY IF NOT EXISTS refresh_tokens_token_idx ON auth .refresh_tokens USING btree (token);
873873
874874
875875--
876876-- Name: users_instance_id_email_idx; Type: INDEX; Schema: auth; Owner: -
877877--
878878
879- CREATE INDEX users_instance_id_email_idx ON auth .users USING btree (instance_id, email);
879+ CREATE INDEX CONCURRENTLY IF NOT EXISTS users_instance_id_email_idx ON auth .users USING btree (instance_id, email);
880880
881881
882882--
883883-- Name: users_instance_id_idx; Type: INDEX; Schema: auth; Owner: -
884884--
885885
886- CREATE INDEX users_instance_id_idx ON auth .users USING btree (instance_id);
886+ CREATE INDEX CONCURRENTLY IF NOT EXISTS users_instance_id_idx ON auth .users USING btree (instance_id);
887887
888888
889889--
890890-- Name: bname; Type: INDEX; Schema: storage; Owner: -
891891--
892892
893- CREATE UNIQUE INDEX bname ON storage .buckets USING btree (name);
893+ CREATE UNIQUE INDEX CONCURRENTLY IF NOT EXISTS bname ON storage .buckets USING btree (name);
894894
895895
896896--
897897-- Name: bucketid_objname; Type: INDEX; Schema: storage; Owner: -
898898--
899899
900- CREATE UNIQUE INDEX bucketid_objname ON storage .objects USING btree (bucket_id, name);
900+ CREATE UNIQUE INDEX CONCURRENTLY IF NOT EXISTS bucketid_objname ON storage .objects USING btree (bucket_id, name);
901901
902902
903903--
904904-- Name: name_prefix_search; Type: INDEX; Schema: storage; Owner: -
905905--
906906
907- CREATE INDEX name_prefix_search ON storage .objects USING btree (name text_pattern_ops);
907+ CREATE INDEX CONCURRENTLY IF NOT EXISTS name_prefix_search ON storage .objects USING btree (name text_pattern_ops);
908908
909909
910910--
0 commit comments