hide SQL queries in collapsible

This commit is contained in:
Pogodaanton 2020-07-12 20:23:23 +02:00
parent 4378e4debf
commit c170c3aac1
1 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,9 @@ The contents in the `build` directory can then be deployed to a PHP web-server.
You can execute the SQL queries shown below in order to create the needed tables manually.
Feel free to change the table names; just keep in mind that you need to assign them in `config.php` later on.
<details>
<summary>Click me to show the SQL queries</summary>
```sql
CREATE TABLE IF NOT EXISTS `shadis`.`shadis_users`(
`id` INT(11) NOT NULL AUTO_INCREMENT,
@ -61,6 +64,8 @@ CREATE TABLE IF NOT EXISTS `shadis`.`shadis_file_tasks`(
) ENGINE = MyISAM;
```
</details>
## Configuring
> Shadis will not function properly without configuring it first.