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 trustpub_configs_github is 'Trusted Publisher configuration for GitHub Actions';
14
+
comment on column trustpub_configs_github.id is 'Unique identifier of the `trustpub_configs_github` row';
15
+
comment on column trustpub_configs_github.created_at is 'Date and time when the configuration was created';
16
+
comment on column trustpub_configs_github.crate_id is 'Unique identifier of the crate that this configuration is for';
17
+
comment on column trustpub_configs_github.repository_owner is 'GitHub name of the user or organization that owns the repository';
18
+
comment on column trustpub_configs_github.repository_owner_id is 'GitHub ID of the user or organization that owns the repository';
19
+
comment on column trustpub_configs_github.repository_name is 'Name of the repository that this configuration is for';
20
+
comment on column trustpub_configs_github.workflow_filename is 'Name of the workflow file inside the repository that will be used to publish the crate';
21
+
comment on column trustpub_configs_github.environment is 'GitHub Actions environment that will be used to publish the crate (if `NULL` the environment is unrestricted)';
0 commit comments