mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
e8c41b1644
* feat: support organization custom data * chore: update changeset
21 lines
822 B
SQL
21 lines
822 B
SQL
/* init_order = 1 */
|
|
|
|
/** Organizations defined by [RFC 0001](https://github.com/logto-io/rfcs/blob/HEAD/active/0001-organization.md). */
|
|
create table organizations (
|
|
tenant_id varchar(21) not null
|
|
references tenants (id) on update cascade on delete cascade,
|
|
/** The globally unique identifier of the organization. */
|
|
id varchar(21) not null,
|
|
/** The organization's name for display. */
|
|
name varchar(128) not null,
|
|
/** A brief description of the organization. */
|
|
description varchar(256),
|
|
/** Additional data associated with the organization. */
|
|
custom_data jsonb /* @use JsonObject */ not null default '{}'::jsonb,
|
|
/** When the organization was created. */
|
|
created_at timestamptz not null default(now()),
|
|
primary key (id)
|
|
);
|
|
|
|
create index organizations__id
|
|
on organizations (tenant_id, id);
|