CREATE TABLE "Files"
(
"Name" VARCHAR(255) COLLATE "ANSI_CI",
"CreatedOn" TIMESTAMP,
"ModifiedOn" TIMESTAMP,
"Size" LARGEINT)
CREATE INDEX "Name" ON "Files"
("Name")
CREATE INDEX "CreatedOn" ON "Files"
("CreatedOn")
CREATE INDEX "ModifiedOn" ON "Files"
("ModifiedOn")
DescriptionThe files are dynamic in ElevateDB and this table reflects the files present in the current files store. The files store can be changed or modified using the SET FILES STORE statement.