small changes

This commit is contained in:
emmalynf 2024-03-23 14:21:06 -04:00
parent b8903adeb8
commit f96beee4b2

View File

@ -1,6 +1,6 @@
""" Defines the table for storing resources """
# Import our mapped SQL types from SQLAlchemy
from sqlalchemy import Integer, String, DateTime, ARRAY
from sqlalchemy import Integer, String, DateTime
# Import mapping capabilities from the SQLAlchemy ORM
from sqlalchemy.orm import Mapped, mapped_column, relationship
# Import the EntityBase that we are extending