Skip to content

Instantly share code, notes, and snippets.

@dmslabsbr
Last active November 4, 2025 21:18
Show Gist options
  • Select an option

  • Save dmslabsbr/a30f527ea02b07af4434415052a89d7c to your computer and use it in GitHub Desktop.

Select an option

Save dmslabsbr/a30f527ea02b07af4434415052a89d7c to your computer and use it in GitHub Desktop.
teste de mermeid

Tabela tabInfoApp

Descrição breve do modelo de dados e do script para criação no PostgreSQL.

create table if not exists public."tabInfoApp" (
  "idTabInfo"   bigserial primary key,
  "atualizado"  timestamptz not null default now(),
  "cdApp"       text not null unique,
  "dsApp"       text not null default ''::text,
  "versao"      bigint not null default 0,
  "cdVersao"    text not null default ''::text
);

📐 Diagrama (Mermaid)

erDiagram
  tabInfoApp {
    BIGINT idTabInfo PK
    TIMESTAMPTZ atualizado
    TEXT cdApp "UNIQUE"
    TEXT dsApp
    BIGINT versao
    TEXT cdVersao
  }
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment