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_subscribe.sql

9 lines
308 B
SQL

CREATE TABLE `subscribe` (
`email` VARCHAR(255) NOT NULL ,
`beta` INT NULL DEFAULT NULL ,
`android` INT NULL DEFAULT NULL ,
`ios` INT NULL DEFAULT NULL ,
`confirmed` INT NULL DEFAULT NULL ,
`emails_sent` INT UNSIGNED NOT NULL DEFAULT '0' ,
PRIMARY KEY (`email`)
) ENGINE = InnoDB;