Difference between revisions of "Account Table"

From truxwiki.com
Jump to navigation Jump to search
(Created page with "The <code>[Account]</code> table holds information gleaned from exploited media. <source lang="SQL"> CREATE TABLE "Account" ( "ID" bigint DEFAULT 0 NOT NULL, "Name" text...")
 
 
Line 1: Line 1:
The <code>[Account]</code> table holds information gleaned from exploited media.
+
The <code>[Account]</code> table holds the accounts used in email, SMS, MMS, chat, etc.
  
 +
=SQL=
 
<source lang="SQL">
 
<source lang="SQL">
 
CREATE TABLE "Account" (
 
CREATE TABLE "Account" (
Line 7: Line 8:
 
);
 
);
 
</source>
 
</source>
 +
 +
=Columns=
 +
==<code>ID</code>==
 +
The integer ID for the account.
 +
 +
==<code>Name</code>==
 +
The name of the account.

Latest revision as of 06:05, 25 January 2024

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.