mirror of
https://github.com/django/django.git
synced 2025-10-10 02:22:22 +00:00
12 lines
301 B
Python
12 lines
301 B
Python
class BaseDatabaseValidation(object):
|
|
"""
|
|
This class encapsulates all backend-specific validation.
|
|
"""
|
|
def __init__(self, connection):
|
|
self.connection = connection
|
|
|
|
def check(self, **kwargs):
|
|
return []
|
|
|
|
def check_field(self, field, **kwargs):
|
|
return []
|