> For the complete documentation index, see [llms.txt](https://finalz-scripts.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://finalz-scripts.gitbook.io/docs/finalz-paid/finalz-drugsystem/database.md).

# Database

```sql

CREATE TABLE `drug_territories` (
	`id` INT(11) NOT NULL,
	`owner` VARCHAR(46) NULL DEFAULT 'available' COLLATE 'utf8mb4_unicode_ci',
	`product` INT(11) NULL DEFAULT NULL,
	`supply` INT(11) NULL DEFAULT NULL,
	`security` TINYINT(4) NULL DEFAULT NULL,
	`upgrade` TINYINT(4) NULL DEFAULT NULL,
	`worker` INT(1) NULL DEFAULT NULL,
	PRIMARY KEY (`id`) USING BTREE
)
COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB
;

```
