def create_table(self):
     """Create the table in the database."""
     with self.connection as conn:
         with conn.cursor() as cursor:
             for statement in Message.create_table_statements():
                 cursor.execute(statement)