Kaydet (Commit) 15ed75d6 authored tarafından Tim Graham's avatar Tim Graham

Updated a code block to use the emphasize-lines Sphinx option

üst f671fb9d
...@@ -57,13 +57,14 @@ Python declaration of each one of these models to specify it is a ...@@ -57,13 +57,14 @@ Python declaration of each one of these models to specify it is a
:attr:`managed <django.db.models.Options.managed>` one. For example, consider :attr:`managed <django.db.models.Options.managed>` one. For example, consider
this generated model definition: this generated model definition:
.. parsed-literal:: .. code-block:: python
:emphasize-lines: 5
class Person(models.Model): class Person(models.Model):
id = models.IntegerField(primary_key=True) id = models.IntegerField(primary_key=True)
first_name = models.CharField(max_length=70) first_name = models.CharField(max_length=70)
class Meta: class Meta:
**managed = False** managed = False
db_table = 'CENSUS_PERSONS' db_table = 'CENSUS_PERSONS'
If you wanted to modify existing data on your ``CENSUS_PERSONS`` SQL table If you wanted to modify existing data on your ``CENSUS_PERSONS`` SQL table
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment