Kit.Db/projects/pg/kit_auth_pg/auth/tables/cabinet.psql

13 lines
715 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- LEGACY (оставлена для совместимости, в дальнейшем будет убрана).
-- Кабинет: обычная таблица (entity) с мягким удалением (is_deleted/date_deleted) — правило 03.
-- id serial PK; organization_inn/organization_name — необязательные реквизиты организации.
CREATE TABLE auth.cabinet
(
id serial not null primary key,
title text not null,
organization_inn text null,
organization_name text null,
date_created timestamptz not null,
is_deleted boolean not null default false,
date_deleted timestamptz null
);