mirror of
https://github.com/ashim-hq/ashim
synced 2026-05-01 10:17:42 +00:00
8 lines
162 B
MySQL
8 lines
162 B
MySQL
|
|
CREATE TABLE `pipelines` (
|
||
|
|
`id` text PRIMARY KEY NOT NULL,
|
||
|
|
`name` text NOT NULL,
|
||
|
|
`description` text,
|
||
|
|
`steps` text NOT NULL,
|
||
|
|
`created_at` integer NOT NULL
|
||
|
|
);
|