mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
9 lines
275 B
SQL
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;
|