Difference between revisions of "Account Table"
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 | + | 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. | ||