CREATE TABLE `neon_pricing_rules` (
	`code` text PRIMARY KEY NOT NULL,
	`label` text NOT NULL,
	`section` text NOT NULL,
	`value` integer NOT NULL,
	`unit` text NOT NULL,
	`position` integer DEFAULT 0 NOT NULL,
	`version` integer DEFAULT 1 NOT NULL,
	`updated_at` integer NOT NULL
);
