diff options
| author | Nathan Perry <avaglir@gmail.com> | 2018-04-04 22:09:13 -0400 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2018-04-04 22:09:13 -0400 |
| commit | bf6745af21f82562af0b85de566f4e7b7ef5df8c (patch) | |
| tree | a7b70656c84b7a9cf1d71a67921b5d171308234b /migrations/2018-02-15-031841_create_memes/down.sql | |
| parent | 180ef480c0037cfcb5735fdfd2c60f910bf5ba5a (diff) | |
revamp database structure
Diffstat (limited to 'migrations/2018-02-15-031841_create_memes/down.sql')
| -rw-r--r-- | migrations/2018-02-15-031841_create_memes/down.sql | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/migrations/2018-02-15-031841_create_memes/down.sql b/migrations/2018-02-15-031841_create_memes/down.sql index 8de6d95..91d88ab 100644 --- a/migrations/2018-02-15-031841_create_memes/down.sql +++ b/migrations/2018-02-15-031841_create_memes/down.sql @@ -1,3 +1,18 @@ -DROP TABLE text_memes;
-DROP TABLE image_memes;
DROP TABLE audio_memes;
+DROP TABLE image_memes;
+DROP TABLE text_memes;
+
+DROP TABLE audio;
+DROP TABLE images;
+
+DROP INDEX audit_updated;
+DROP INDEX audit_updated_by;
+DROP INDEX audit_metadata;
+DROP INDEX audit_metadata_updated_by;
+
+DROP TABLE audit_records;
+
+DROP INDEX metadata_created;
+DROP INDEX metadata_created_by;
+
+DROP TABLE metadata;
|
