Updated Home (markdown)

Anton Hvornum 2017-03-10 14:49:28 +01:00
parent afd3e968b1
commit 7e863bee23
1 changed files with 5 additions and 0 deletions

@ -14,6 +14,11 @@ Deleting your copy of a room:
---
**DISCLAIMER: Not verified by a main dev, just a user contributions (MAY EAT YOUR DATABASE):**
For reference, this is how I got the list of tables to delete the room from:
SELECT table_name FROM information_schema.columns WHERE column_name = 'room_id';
```
DELETE FROM state_groups WHERE room_id='<room id here>';
DELETE FROM state_groups_state WHERE room_id='<room id here>';