Changeset 812 for trunk/app/config
- Timestamp:
- 10/12/08 13:13:45 (7 weeks ago)
- Files:
-
- 1 modified
-
trunk/app/config/sql/postgresql/entries.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/sql/postgresql/entries.sql
r771 r812 6 6 subject_id int REFERENCES subjects(id) NOT NULL, 7 7 created timestamp(0) with time zone DEFAULT now() NOT NULL, 8 status int NOT NULL DEFAULT 0,8 status smallint NOT NULL DEFAULT 0, 9 9 user_id int REFERENCES users(id) ON DELETE CASCADE, 10 discution int NOT NULL DEFAULT 0, -- discution, Activ/Desactiv 1/010 discution smallint NOT NULL DEFAULT 0, -- discution, Activ/Desactiv 1/0 11 11 "karanet" smallint NOT NULL DEFAULT 0 12 12 ); 13 -- search engine index14 CREATE INDEX entries_idx ON entries USING gin(to_tsvector('spanish', body));15 13 14
