Account Table

From truxwiki.com
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.