You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here you will find common errors and their solutions. If you have any further questions, please feel free to ask in the [Discord](https://discord.it-scripts.com).
@@ -24,10 +24,34 @@ If you get this error you either don't have [ox_lib](https://github.com/overexte
24
24
Make sure to start the ox_lib script before the it-drugs script.
25
25
26
26
## Database Errors
27
+
```ansi
28
+
[1m [31mError: it-drugs was unable to execute query
33
+
- You updated the script from 1.2.4 to 1.3.x and didn't update the database. To fix this you can run the following SQL query:
34
+
```sql copy
35
+
-- Delete the drug_plants table
36
+
DROPTABLE IF EXISTS drug_plants;
37
+
-- Delete the drug_processing table
38
+
DROPTABLE IF EXISTS drug_processing;
39
+
```
40
+
41
+
---
42
+
### Any other databse error
43
+
If you get any other database error, please make sure that you are using the latest version of the script.
0 commit comments