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
crate_id intnot nullreferences crates on delete cascade,
6
+
repository_owner varcharnot null,
7
+
repository_owner_id intnot null,
8
+
repository_name varcharnot null,
9
+
workflow_filename varcharnot null,
10
+
environment varchar
11
+
);
12
+
13
+
comment on table github_oidc_configs is 'Trusted Publisher OIDC configuration for GitHub Actions';
14
+
comment on column github_oidc_configs.id is 'Unique identifier of the `github_oidc_configs` row';
15
+
comment on column github_oidc_configs.created_at is 'Date and time when the configuration was created';
16
+
comment on column github_oidc_configs.crate_id is 'Unique identifier of the crate that this configuration is for';
17
+
comment on column github_oidc_configs.repository_owner is 'GitHub name of the user or organization that owns the repository';
18
+
comment on column github_oidc_configs.repository_owner_id is 'GitHub ID of the user or organization that owns the repository';
19
+
comment on column github_oidc_configs.repository_name is 'Name of the repository that this configuration is for';
20
+
comment on column github_oidc_configs.workflow_filename is 'Name of the workflow file inside the repository that will be used to publish the crate';
21
+
comment on column github_oidc_configs.environment is 'GitHub Actions environment that will be used to publish the crate (if `NULL` the environment is unrestricted)';
0 commit comments