Account Table

From truxwiki.com
Revision as of 06:05, 25 January 2024 by Sam (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The [Account] table holds the accounts used in email, SMS, MMS, chat, etc.

SQL

CREATE TABLE "Account" (
  "ID" bigint DEFAULT 0 NOT NULL,
  "Name" text DEFAULT ''::text NOT NULL
);

Columns

ID

The integer ID for the account.

Name

The name of the account.