Skip to content

Commit 4dc300f

Browse files
committed
fix id prefix
1 parent 73c3b0b commit 4dc300f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

manual-in-progress/grafana/ydb-schema.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ CREATE TABLE alert_instance (
118118
current_state_end int DEFAULT 0 NOT NULL,
119119
current_reason character varying(190),
120120
result_fingerprint character varying(16),
121-
__ydb_stub_id BIGSERIAL PRIMARY KEY
121+
__pg_stub_id BIGSERIAL PRIMARY KEY
122122
);
123123

124124

@@ -386,7 +386,7 @@ CREATE TABLE correlation (
386386
description text NOT NULL,
387387
config text,
388388
provisioned boolean DEFAULT false NOT NULL,
389-
__ydb_stub_id BIGSERIAL PRIMARY KEY
389+
__pg_stub_id BIGSERIAL PRIMARY KEY
390390
);
391391

392392

@@ -617,7 +617,7 @@ CREATE TABLE file (
617617
created timestamp without time zone NOT NULL,
618618
size int NOT NULL,
619619
mime_type character varying(255) NOT NULL,
620-
__ydb_stub_id BIGSERIAL PRIMARY KEY
620+
__pg_stub_id BIGSERIAL PRIMARY KEY
621621
);
622622

623623

@@ -631,7 +631,7 @@ CREATE TABLE file_meta (
631631
path_hash character varying(64) NOT NULL,
632632
key character varying(191) NOT NULL,
633633
value character varying(1024) NOT NULL,
634-
__ydb_stub_id BIGSERIAL PRIMARY KEY
634+
__pg_stub_id BIGSERIAL PRIMARY KEY
635635
);
636636

637637

0 commit comments

Comments
 (0)