diff --git a/model/schema.sql b/model/schema.sql index 7dcd080..a6e2dc0 100644 --- a/model/schema.sql +++ b/model/schema.sql @@ -234,6 +234,13 @@ ALTER TABLE ONLY user_notebook CREATE INDEX file_note_id_index ON file USING btree (note_id); +-- +-- Name: file_notebook_id_index; Type: INDEX; Schema: public; Owner: luminotes; Tablespace: +-- + +CREATE INDEX file_notebook_id_index ON file USING btree (notebook_id); + + -- -- Name: luminotes_user_email_address_index; Type: INDEX; Schema: public; Owner: luminotes; Tablespace: -- @@ -248,6 +255,13 @@ CREATE INDEX luminotes_user_email_address_index ON luminotes_user USING btree (e CREATE INDEX luminotes_user_username_index ON luminotes_user USING btree (username); +-- +-- Name: note_notebook_id_index; Type: INDEX; Schema: public; Owner: luminotes; Tablespace: +-- + +CREATE INDEX note_notebook_id_index ON note USING btree (notebook_id); + + -- -- Name: note_notebook_id_startup_index; Type: INDEX; Schema: public; Owner: luminotes; Tablespace: --