- MyISAM enforcement

This commit is contained in:
Pogodaanton 2020-07-17 16:12:12 +02:00
parent c94b148119
commit d3d7bb665d
1 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS `shadis`.`shadis_users`(
`username` VARCHAR(50) NOT NULL UNIQUE,
`password` VARCHAR(255) NOT NULL,
PRIMARY KEY(`id`)
) ENGINE = MyISAM;
);
```
```sql
@ -63,7 +63,7 @@ CREATE TABLE IF NOT EXISTS `shadis`.`shadis_files`(
PRIMARY KEY(`id`),
UNIQUE (`id`),
UNIQUE (`token`)
) ENGINE = MyISAM;
);
```
```sql
@ -73,7 +73,7 @@ CREATE TABLE IF NOT EXISTS `shadis`.`shadis_file_tasks`(
`thumbnail` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY(`id`),
UNIQUE (`id`)
) ENGINE = MyISAM;
);
```
</details>