mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-12 16:14:58 +08:00
Fix uniqueness
This commit is contained in:
parent
d8794972d5
commit
532f6dfc03
1 changed files with 1 additions and 3 deletions
|
@ -5782,7 +5782,7 @@ CREATE UNIQUE INDEX index_users_on_reset_password_token ON public.users USING bt
|
||||||
-- Name: index_users_on_unlock_token; Type: INDEX; Schema: public; Owner: -
|
-- Name: index_users_on_unlock_token; Type: INDEX; Schema: public; Owner: -
|
||||||
--
|
--
|
||||||
|
|
||||||
CREATE INDEX index_users_on_unlock_token ON public.users USING btree (unlock_token);
|
CREATE UNIQUE INDEX index_users_on_unlock_token ON public.users USING btree (unlock_token);
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -7279,5 +7279,3 @@ INSERT INTO "schema_migrations" (version) VALUES
|
||||||
('20200604210943'),
|
('20200604210943'),
|
||||||
('20200622155632'),
|
('20200622155632'),
|
||||||
('20200714082503');
|
('20200714082503');
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue