CREATE TABLE `pipelines` (
`id` text PRIMARY KEY NOT NULL,
`name` text NOT NULL,
`description` text,
`steps` text NOT NULL,
`created_at` integer NOT NULL
);