CC-1658: Remove file tree structure from code and database. Removed everything and tested the interface, add temporary upgrade file to bin directory. For now you will have to apply it manually. Permissions still need to be fixed.

This commit is contained in:
paul.baranowski 2010-09-02 12:00:18 -04:00
parent a674aee3b9
commit 0a46b39c46
42 changed files with 856 additions and 3985 deletions

View file

@ -0,0 +1,14 @@
CREATE SEQUENCE file_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1000000
CACHE 1;
ALTER TABLE ls_files
ALTER COLUMN id
SET DEFAULT NEXTVAL('file_id_seq');
DROP TABLE ls_struct;
DROP TABLE ls_tree;