mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 02:04:33 +08:00
Update structure.sql [SCI-4330]
This commit is contained in:
parent
6f8f89fbf0
commit
c2409bbfef
1 changed files with 9 additions and 1 deletions
|
@ -3987,6 +3987,13 @@ CREATE UNIQUE INDEX index_active_storage_blobs_on_key ON public.active_storage_b
|
||||||
CREATE INDEX index_activities_on_created_at ON public.activities USING btree (created_at);
|
CREATE INDEX index_activities_on_created_at ON public.activities USING btree (created_at);
|
||||||
|
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Name: index_activities_on_created_at_and_team_id_and_no_project_id; Type: INDEX; Schema: public; Owner: -
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE INDEX index_activities_on_created_at_and_team_id_and_no_project_id ON public.activities USING btree (created_at DESC, team_id) WHERE (project_id IS NULL);
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Name: index_activities_on_experiment_id; Type: INDEX; Schema: public; Owner: -
|
-- Name: index_activities_on_experiment_id; Type: INDEX; Schema: public; Owner: -
|
||||||
--
|
--
|
||||||
|
@ -7159,6 +7166,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
||||||
('20191206105058'),
|
('20191206105058'),
|
||||||
('20191210103004'),
|
('20191210103004'),
|
||||||
('20191218072619'),
|
('20191218072619'),
|
||||||
('20200113143828');
|
('20200113143828'),
|
||||||
|
('20200204100934');
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue