Expand LotType from {seed, plant} to six append-only forms (seed,
seedling, plant, tree, bulb, cutting) and add an optional Presentation
attribute (pot/tray/plug/bareRoot/rootBall) kept separate from quantity
so 'how many' and 'in what packaging' never conflate.
Add attachments.sortOrder so the cover photo is the lowest-ordered one,
enabling reordering from the full-screen viewer. Expand QuantityKind
with the new plant-aware forms.
Migrations are additive (v1→v5 all covered by migration_test); enum
values are stored by name and appended only, keeping CRDT sync safe.
54 lines
1.4 KiB
Dart
54 lines
1.4 KiB
Dart
import 'package:drift/drift.dart';
|
|
|
|
import 'enums.dart';
|
|
import 'tables.dart';
|
|
|
|
part 'database.g.dart';
|
|
|
|
/// The encrypted local inventory database (SQLCipher via an injected executor).
|
|
///
|
|
/// The executor is passed in so production wires SQLCipher while tests can use
|
|
/// an in-memory database — the schema and queries are identical either way.
|
|
@DriftDatabase(
|
|
tables: [
|
|
Varieties,
|
|
VarietyVernacularNames,
|
|
Species,
|
|
SpeciesCommonNames,
|
|
Lots,
|
|
GerminationTests,
|
|
Movements,
|
|
Parties,
|
|
Attachments,
|
|
ExternalLinks,
|
|
],
|
|
)
|
|
class AppDatabase extends _$AppDatabase {
|
|
AppDatabase(super.e);
|
|
|
|
@override
|
|
int get schemaVersion => 5;
|
|
|
|
@override
|
|
MigrationStrategy get migration => MigrationStrategy(
|
|
onCreate: (m) async => m.createAll(),
|
|
onUpgrade: (m, from, to) async {
|
|
// v2: lots can hold seeds or living plant material.
|
|
if (from < 2) {
|
|
await m.addColumn(lots, lots.type);
|
|
}
|
|
// v3: optional harvest month alongside the harvest year.
|
|
if (from < 3) {
|
|
await m.addColumn(lots, lots.harvestMonth);
|
|
}
|
|
// v4: optional packaging/supply form for living lots.
|
|
if (from < 4) {
|
|
await m.addColumn(lots, lots.presentation);
|
|
}
|
|
// v5: display order for attachments (cover photo = lowest sortOrder).
|
|
if (from < 5) {
|
|
await m.addColumn(attachments, attachments.sortOrder);
|
|
}
|
|
},
|
|
);
|
|
}
|