mirror of
https://github.com/django/django.git
synced 2025-09-26 20:19:16 +00:00
Changed BaseDatabaseSchemaEditor._effective_default() to staticmethod.
Follow up to 9cac10eee4
.
This commit is contained in:
parent
5d327a63ef
commit
acdd18dffc
1 changed files with 2 additions and 2 deletions
|
@ -199,8 +199,8 @@ class BaseDatabaseSchemaEditor:
|
||||||
'requires_literal_defaults must provide a prepare_default() method'
|
'requires_literal_defaults must provide a prepare_default() method'
|
||||||
)
|
)
|
||||||
|
|
||||||
@classmethod
|
@staticmethod
|
||||||
def _effective_default(self, field):
|
def _effective_default(field):
|
||||||
# This method allows testing its logic without a connection.
|
# This method allows testing its logic without a connection.
|
||||||
if field.has_default():
|
if field.has_default():
|
||||||
default = field.get_default()
|
default = field.get_default()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue