witten
/
luminotes
Archived
1
0
Fork 0

Reordering some columns and adding some indices.

This commit is contained in:
Dan Helfman 2007-10-05 07:50:51 +00:00
parent 846abfcd40
commit 54dee52dc7
1 changed files with 16 additions and 17 deletions

View File

@ -6,21 +6,6 @@ SET client_encoding = 'UTF8';
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: luminotes; Type: DATABASE; Schema: -; Owner: luminotes
--
CREATE DATABASE luminotes WITH TEMPLATE = template0 ENCODING = 'UTF8';
ALTER DATABASE luminotes OWNER TO luminotes;
\connect luminotes
SET client_encoding = 'UTF8';
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
--
@ -119,9 +104,9 @@ ALTER TABLE public.notebook_current OWNER TO luminotes;
--
CREATE TABLE password_reset (
id text NOT NULL,
email_address text NOT NULL,
redeemed boolean,
id text NOT NULL
redeemed boolean
);
@ -180,6 +165,20 @@ ALTER TABLE ONLY user_notebook
ADD CONSTRAINT user_notebook_pkey PRIMARY KEY (user_id, notebook_id);
--
-- Name: luminotes_user_email_address_index; Type: INDEX; Schema: public; Owner: luminotes; Tablespace:
--
CREATE INDEX luminotes_user_email_address_index ON luminotes_user USING btree (email_address);
--
-- Name: luminotes_user_username_index; Type: INDEX; Schema: public; Owner: luminotes; Tablespace:
--
CREATE INDEX luminotes_user_username_index ON luminotes_user USING btree (username);
--
-- Name: note_notebook_id_startup_index; Type: INDEX; Schema: public; Owner: luminotes; Tablespace:
--