You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

validation.py 257 B

123456789
  1. class BaseDatabaseValidation(object):
  2. """
  3. This class encapsulates all backend-specific model validation.
  4. """
  5. def __init__(self, connection):
  6. self.connection = connection
  7. def check_field(self, field, **kwargs):
  8. return []