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:
parent
a674aee3b9
commit
0a46b39c46
42 changed files with 856 additions and 3985 deletions
14
bin/upgrade-1.3-to-1.4.sql
Normal file
14
bin/upgrade-1.3-to-1.4.sql
Normal 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;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue