fid integer NOT NULL,
host_id integer,
path text,
+ rename_disabled bool NOT NULL DEFAULT false,
+ original_name text NOT NULL DEFAULT '',
renamed timestamp without time zone,
+ rename_path text NOT NULL DEFAULT '',
failed_rename boolean NOT NULL DEFAULT false,
+ rename_error text NOT NULL DEFAULT '',
CONSTRAINT file_location_pk PRIMARY KEY (location_id ),
CONSTRAINT file_location_unique_location UNIQUE (fid, host_id, path )
);