The MeAnd23W_Kit table is internal app data used by the DNAGedcom Client when working with 23andMe. It records the account/kit that was logged in to gather 23andMe data, along with a created date and a sync flag. It does not hold any DNA match data — matches live in the MeAnd23W_Relatives table.
| Column | Type | Description |
|---|---|---|
| Id | int (PK) | Auto-incrementing primary key |
| loginUsername | string | The DNAGedcom username under which this row was stored |
| kitnumber | string | Kit number. Not populated in current versions of the client. |
| username | string | The 23andMe account username used to log in |
| password | string | Internal credential storage field. In current versions of the client this is written as an empty string when a row is created. |
| created_date | string | Date the row was created (MM/dd/yyyy) |
| sync | string | Sync status flag (set to “0” when a new row is inserted) |
A row is added during the 23andMe login step. The client checks whether a matching row already exists (by username and password) and, if not, inserts a new one with loginUsername set to the current DNAGedcom user, created_date set to today, and sync set to “0”. In current code the password and kitnumber fields are not filled in — only username and created_date carry real values.