Files
offline-db/migrate_to_innodb.sql
google-labs-jules[bot] af440258b6 feat: Refactor and enhance platform
- 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.
2026-01-08 10:12:53 +00:00

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;