Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions common/src/sql/dbinit.sql
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ CREATE TYPE omicron.public.user_provision_type AS ENUM (
CREATE TABLE omicron.public.silo (
/* Identity metadata */
id UUID PRIMARY KEY,
name STRING(128) NOT NULL,
name STRING(63) NOT NULL,
description STRING(512) NOT NULL,
time_created TIMESTAMPTZ NOT NULL,
time_modified TIMESTAMPTZ NOT NULL,
Expand Down Expand Up @@ -287,7 +287,7 @@ CREATE TYPE omicron.public.provider_type AS ENUM (
CREATE TABLE omicron.public.identity_provider (
/* Identity metadata */
id UUID PRIMARY KEY,
name STRING(128) NOT NULL,
name STRING(63) NOT NULL,
description STRING(512) NOT NULL,
time_created TIMESTAMPTZ NOT NULL,
time_modified TIMESTAMPTZ NOT NULL,
Expand Down Expand Up @@ -315,7 +315,7 @@ CREATE INDEX ON omicron.public.identity_provider (
CREATE TABLE omicron.public.saml_identity_provider (
/* Identity metadata */
id UUID PRIMARY KEY,
name STRING(128) NOT NULL,
name STRING(63) NOT NULL,
description STRING(512) NOT NULL,
time_created TIMESTAMPTZ NOT NULL,
time_modified TIMESTAMPTZ NOT NULL,
Expand Down Expand Up @@ -1060,7 +1060,7 @@ CREATE TABLE omicron.public.instance_external_ip (
id UUID PRIMARY KEY,

/* Name for floating IPs. See the constraints below. */
name STRING(128),
name STRING(63),

/* Description for floating IPs. See the constraints below. */
description STRING(512),
Expand Down