CREATE TABLE `sign_profile_catalog` (
	`code` text PRIMARY KEY NOT NULL,
	`name` text NOT NULL,
	`short` text NOT NULL,
	`image_url` text NOT NULL,
	`description` text DEFAULT '' NOT NULL,
	`ideal` text DEFAULT '' NOT NULL,
	`spec_json` text NOT NULL,
	`active` integer DEFAULT true NOT NULL,
	`approved` integer DEFAULT false NOT NULL,
	`updated_at` integer NOT NULL
);
