fix: Use ON DELETE CASCADE for the anime watcher join table

This commit is contained in:
2026-07-26 18:14:39 +02:00
parent d034875e16
commit 69553707a9
3 changed files with 29 additions and 17 deletions

View File

@@ -1,14 +0,0 @@
import 'package:anitrack/src/ui/helpers.dart';
import 'package:flutter/material.dart';
/// A page that renders the anime list and the calendar as nested views.
class MainPage extends StatelessWidget {
const MainPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
drawer: getDrawer(context),
);
}
}