Skip to content

Commit

Permalink
More changes
Browse files Browse the repository at this point in the history
  • Loading branch information
emrojo committed May 13, 2022
1 parent 3c8c822 commit 18678f9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions baracoda/orm/child_barcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@


class ChildBarcode(Base):
"""Class that will define the ORM mapping with the database. It will
store a list of all parent barcodes with an index of the last created
child for the parent for each entry.
"""

__tablename__ = "child_barcode_counter"

barcode = Column(String(50), nullable=False, primary_key=True)
Expand Down

0 comments on commit 18678f9

Please sign in to comment.