Well done!

You have completed ORM, Models, and Creation!

Quiz Question 1 of 6

class User():
    __tablename__ = 'users'

    id = Column(Integer, primary_key=True)
    name = Column(String)
    fullname = Column(String)
    nickname = Column(String)

What is missing from the model above?

Choose the correct answer below:

Skip Quiz Review Video