Skip to content

Commit

Permalink
docs: fix schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dickermoshe committed Sep 27, 2024
1 parent 2522641 commit 697ba34
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/lib/snippets/schema.dart
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,11 @@ class TableWithCustomConstraints extends Table {
}
// #enddocregion custom-constraint-table

class GroupMemberships extends Table with PkMixin {
late final group = integer()();
late final user = integer()();
}

// #docregion custom-check
class Student extends Table {
late final id = integer().autoIncrement()();
Expand Down

0 comments on commit 697ba34

Please sign in to comment.