Commit 68a7dd0f authored by Hamaker, Alec's avatar Hamaker, Alec
Browse files

Added important note to crud example.

parent 8f268c97
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -59,6 +59,8 @@ from common.mixins.postgres import PostgresMixin
from common.database import Database
from common.crud_table import CRUDTable

# PLEASE NOTE: the name of class MUST be consistent with the name of the
# table in the database itself.
class users(CRUDTable):
    """Provides CRUD access to the users table"""
    def __init__(self, db):