gradido/skeema/gradido_community/state_groups.sql
2020-07-28 18:01:45 +02:00

9 lines
275 B
SQL

CREATE TABLE `state_groups` (
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
`index_id` varbinary(64) NOT NULL,
`name` varchar(50) NOT NULL,
`root_public_key` binary(32) NOT NULL,
`user_count` smallint UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;