Changelog
1.5.0 (2026-02-27)
What must be considered during update?
CREATE TABLE IF NOT EXISTS `nss_pinboard_boards`
(
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY COMMENT 'Unique board identifier',
`city` VARCHAR(255) NOT NULL COMMENT 'Unique board name (= partition key for posters)',
`group_name` VARCHAR(255) NOT NULL COMMENT 'Board group (used for pinning service)',
`coord_x` FLOAT NOT NULL DEFAULT 0 COMMENT 'World position X',
`coord_y` FLOAT NOT NULL DEFAULT 0 COMMENT 'World position Y',
`coord_z` FLOAT NOT NULL DEFAULT 0 COMMENT 'World position Z',
`heading` FLOAT NOT NULL DEFAULT 0 COMMENT 'Heading in degrees',
`alternative_style` TINYINT(1) NOT NULL DEFAULT 0 COMMENT 'Use indoor/alternative NUI look',
`hide_blip` TINYINT(1) NOT NULL DEFAULT 0 COMMENT 'Hide map blip',
`prevent_text_posters` TINYINT(1) NOT NULL DEFAULT 0 COMMENT 'Disallow text posters',
`prevent_image_posters` TINYINT(1) NOT NULL DEFAULT 0 COMMENT 'Disallow image posters',
`restrict_view_by_jobs` TEXT DEFAULT NULL COMMENT 'JSON: {"JobName":grade}',
`restrict_create_by_jobs` TEXT DEFAULT NULL COMMENT 'JSON: {"JobName":grade}',
`restrict_view_by_callback` TEXT DEFAULT NULL COMMENT 'Lua source for view callback',
`restrict_create_by_callback` TEXT DEFAULT NULL COMMENT 'Lua source for create callback',
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp of creation',
UNIQUE KEY `uk_city` (`city`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4;1.4.1 (2026-02-15)
What must be considered during update?
1.4.0 (2025-11-21)
What must be considered during update?
1.3.5 (2025-11-17)
What must be considered during update?
1.3.4 (2025-02-17)
What must be considered during update?
1.3.3 (2025-01-14)
What must be considered during update?
1.3.2 (2024-11-10)
What must be considered during update?
1.3.1 (2024-03-13)
What must be considered during update?
1.3.0 (2024-03-07)
What must be considered during update?
1.2.2 (2024-02-07)
1.2.1 (2024-01-18)
1.2.0 (2023-07-13)
What must be considered during update?
1.1.9 (2023-07-05)
1.1.8 (2023-03-23)
1.1.7 (2023-03-17)
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Last updated
Was this helpful?