You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE IF NOT EXISTS entity_ref(
ref_type VARCHAR(32) NOT NULL,
ref_value VARCHAR(64) NOT NULL,
creation_date TIMESTAMP WITH TIME ZONE NOT NULL,
entity_id VARCHAR(64) NOT NULL,
PRIMARY KEY(ref_type, ref_value, creation_date, entity_id)
) PARTITION BY RANGE (creation_date);
CREATE TABLE IF NOT EXISTS entity_ref_default PARTITION OF entity_ref DEFAULT;
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: