mirror of
https://github.com/barkeser2002/offline-db.git
synced 2026-09-25 02:19:59 +03:00
- Refactored the API to use Flask Blueprints for better organization. - Migrated the database from MyISAM to InnoDB to support transactions. - Implemented a video link refresh feature to automatically update video links. - Removed the disabled `animely` adapter.
15 lines
529 B
SQL
15 lines
529 B
SQL
ALTER TABLE animes ENGINE=InnoDB;
|
|
ALTER TABLE anime_titles ENGINE=InnoDB;
|
|
ALTER TABLE genres ENGINE=InnoDB;
|
|
ALTER TABLE anime_genres ENGINE=InnoDB;
|
|
ALTER TABLE themes ENGINE=InnoDB;
|
|
ALTER TABLE anime_themes ENGINE=InnoDB;
|
|
ALTER TABLE studios ENGINE=InnoDB;
|
|
ALTER TABLE anime_studios ENGINE=InnoDB;
|
|
ALTER TABLE producers ENGINE=InnoDB;
|
|
ALTER TABLE anime_producers ENGINE=InnoDB;
|
|
ALTER TABLE episodes ENGINE=InnoDB;
|
|
ALTER TABLE sources ENGINE=InnoDB;
|
|
ALTER TABLE anime_sources ENGINE=InnoDB;
|
|
ALTER TABLE video_links ENGINE=InnoDB;
|