add subdivision2 to schema

This commit is contained in:
Francis Cao 2023-02-16 09:52:07 -08:00
parent b6cc6cb655
commit 074fa2c5fc
6 changed files with 59 additions and 29 deletions

View file

@ -24,7 +24,8 @@ CREATE TABLE `session` (
`screen` VARCHAR(11) NULL,
`language` VARCHAR(35) NULL,
`country` CHAR(2) NULL,
`subdivision` CHAR(3) NULL,
`subdivision1` CHAR(3) NULL,
`subdivision2` CHAR(3) NULL,
`city` VARCHAR(50) NULL,
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),