ddl for organizations and memberships (#537)

This commit is contained in:
Michael Quigley 2024-12-09 11:05:28 -05:00
parent f86546b2aa
commit d6c8f206b2
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,27 @@
-- +migrate Up
create table organizations (
id serial primary key,
token varchar(32) not null,
description varchar(128),
created_at timestamptz not null default(current_timestamp),
updated_at timestamptz not null default(current_timestamp),
deleted boolean not null default(false)
);
create index organizations_token_idx on organizations(token);
create table organization_members (
id serial primary key,
organization_id integer references organizations(id) not null,
account_id integer references accounts(id) not null,
admin boolean not null default(false),
created_at timestamptz not null default(current_timestamp),
updated_at timestamptz not null default(current_timestamp)
);
create index organization_members_account_id_idx on organization_members(account_id);

View File

@ -0,0 +1,27 @@
-- +migrate Up
create table organizations (
id serial primary key,
token varchar(32) not null,
description varchar(128),
created_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
updated_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
deleted boolean not null default(false)
);
create index organization_token_idx on organizations(token);
create table organization_members (
id serial primary key,
organization_id integer references organizations(id) not null,
account_id integer references accounts(id) not null,
admin boolean not null default(false),
created_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
updated_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now'))
);
create index organization_members_account_id_idx on organization_members(account_id);