This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
host_democracy/democracy/sql/mysql/schema_beta.sql

10 lines
367 B
SQL

CREATE TABLE `beta` (
`code` varchar(8) DEFAULT NULL,
`email` varchar(255) NOT NULL DEFAULT '',
`android` int(11) DEFAULT NULL,
`ios` int(11) DEFAULT NULL,
`redeemedAt` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`storedAt` timestamp NULL DEFAULT NULL,
`emailedAt` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;