Files
flutter/lib/powersync/schema.dart
2025-10-22 20:49:38 +02:00

24 lines
429 B
Dart

import 'package:powersync/powersync.dart';
const tableMuscle = 'exercises_muscle';
const tableBodyWeight = 'weight_weightentry';
Schema schema = const Schema([
Table(
tableMuscle,
[
Column.text('name'),
Column.text('name_en'),
Column.text('is_front'),
],
),
Table(
tableBodyWeight,
[
Column.text('uuid'),
Column.real('weight'),
Column.text('date'),
],
),
]);