sqlpage_files

Column Type PK Required Default
path TEXT Yes Yes
contents TEXT No Yes
last_modified numeric No No CURRENT_TIMESTAMP

Foreign Keys

No data

Indexes

Column Name Index Name
path sqlite_autoindex_sqlpage_files_1

SQL DDL

CREATE TABLE `sqlpage_files` (
	`path` text PRIMARY KEY NOT NULL,
	`contents` text NOT NULL,
	`last_modified` numeric DEFAULT (CURRENT_TIMESTAMP)
)