users
Description
Records User IDs (uid) created by Firebase Authentication
Table Definition
```sql
CREATE TABLE `users` (
`id` varchar(128) NOT NULL COMMENT 'User ID (uid) created by Firebase Authentication',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Records User IDs (uid) created by Firebase Authentication'
```
Columns
Constraints
# |
Name |
Type |
Definition |
1 |
PRIMARY |
PRIMARY KEY |
PRIMARY KEY (id) |
Indexes
# |
Name |
Definition |
1 |
PRIMARY |
PRIMARY KEY (id) USING BTREE |
Relations

Generated by tbls