CREATE TABLE `cms_content` (
	`key` text PRIMARY KEY NOT NULL,
	`label` text NOT NULL,
	`section` text NOT NULL,
	`draft_value` text NOT NULL,
	`published_value` text NOT NULL,
	`updated_at` integer NOT NULL,
	`published_at` integer NOT NULL
);
--> statement-breakpoint
CREATE TABLE `cms_revisions` (
	`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
	`content_key` text NOT NULL,
	`value` text NOT NULL,
	`action` text NOT NULL,
	`author_email` text,
	`created_at` integer NOT NULL
);
