[1.7.x] Removed some tabs in the docs.
Backport of 73ff4498aa
from master
This commit is contained in:
parent
288b557ac4
commit
ab883a3477
|
@ -792,11 +792,11 @@ a quoted name as the value for ``db_table``::
|
||||||
|
|
||||||
class LegacyModel(models.Model):
|
class LegacyModel(models.Model):
|
||||||
class Meta:
|
class Meta:
|
||||||
db_table = '"name_left_in_lowercase"'
|
db_table = '"name_left_in_lowercase"'
|
||||||
|
|
||||||
class ForeignModel(models.Model):
|
class ForeignModel(models.Model):
|
||||||
class Meta:
|
class Meta:
|
||||||
db_table = '"OTHER_USER"."NAME_ONLY_SEEMS_OVER_30"'
|
db_table = '"OTHER_USER"."NAME_ONLY_SEEMS_OVER_30"'
|
||||||
|
|
||||||
Quoted names can also be used with Django's other supported database
|
Quoted names can also be used with Django's other supported database
|
||||||
backends; except for Oracle, however, the quotes have no effect.
|
backends; except for Oracle, however, the quotes have no effect.
|
||||||
|
|
|
@ -38,13 +38,13 @@ The FileSystemStorage Class
|
||||||
|
|
||||||
.. attribute:: location
|
.. attribute:: location
|
||||||
|
|
||||||
Absolute path to the directory that will hold the files.
|
Absolute path to the directory that will hold the files.
|
||||||
Defaults to the value of your :setting:`MEDIA_ROOT` setting.
|
Defaults to the value of your :setting:`MEDIA_ROOT` setting.
|
||||||
|
|
||||||
.. attribute:: base_url
|
.. attribute:: base_url
|
||||||
|
|
||||||
URL that serves the files stored at this location.
|
URL that serves the files stored at this location.
|
||||||
Defaults to the value of your :setting:`MEDIA_URL` setting.
|
Defaults to the value of your :setting:`MEDIA_URL` setting.
|
||||||
|
|
||||||
.. attribute:: file_permissions_mode
|
.. attribute:: file_permissions_mode
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue