mirror of
https://github.com/paralus/paralus.git
synced 2026-08-24 15:47:19 +00:00
Signed-off-by: niravparikh05 <nir.parikh05@gmail.com> Signed-off-by: Nirav Parikh <52062717+niravparikh05@users.noreply.github.com> Co-authored-by: Akshay Gaikwad <akshay196@users.noreply.github.com>
8 lines
254 B
SQL
8 lines
254 B
SQL
CREATE TABLE IF NOT EXISTS cluster_operator_bootstrap (
|
|
cluster_id uuid NOT NULL,
|
|
created_at timestamp with time zone NOT NULL,
|
|
modified_at timestamp with time zone NOT NULL,
|
|
trash boolean DEFAULT false NOT NULL,
|
|
yaml_content text
|
|
);
|