diff --git a/transcoder/migrations/000001_init_db.down.sql b/transcoder/migrations/000001_init_db.down.sql index e69de29b..89e4b552 100644 --- a/transcoder/migrations/000001_init_db.down.sql +++ b/transcoder/migrations/000001_init_db.down.sql @@ -0,0 +1,10 @@ +begin; + +drop table info; +drop table videos; +drop table audios; +drop table subtitles; +drop table chapters; +drop type chapter_type; + +commit;