Skip to content

Commit

Permalink
remove index
Browse files Browse the repository at this point in the history
  • Loading branch information
Mropat committed Mar 30, 2022
1 parent 081e795 commit 85e5843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genotype_api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class PlateBase(SQLModel):


class Plate(PlateBase, table=True):
id: Optional[int] = Field(default=None, primary_key=True, index=True)
id: Optional[int] = Field(default=None, primary_key=True)
user: Optional["User"] = Relationship(back_populates="plates")
analyses: Optional[List["Analysis"]] = Relationship(back_populates="plate")

Expand Down

0 comments on commit 85e5843

Please sign in to comment.