If the table name is `week_start_date`, you should use the Dart field name `weekStartDate`.
```
final query = Query.where('weekStartDate', DateFormat('yyyy-MM-dd').format(currentWeekStartDate));
```
If the table name is `week_start_date`, you should use the Dart field name `weekStartDate`.
```
final query = Query.where('weekStartDate', DateFormat('yyyy-MM-dd').format(currentWeekStartDate));
```
1. forgot to specify the table name in the model
```
@ConnectOfflineFirstWithSupabase(
supabaseConfig: SupabaseSerializable(tableName: 'weekly_meal_plan'),
)
```
1. forgot to specify the table name in the model
```
@ConnectOfflineFirstWithSupabase(
supabaseConfig: SupabaseSerializable(tableName: 'weekly_meal_plan'),
)
```