mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
11 lines
244 B
Python
11 lines
244 B
Python
|
|
from django.db import models
|
|
|
|
class MyModel(models.Model):
|
|
title = models.CharField(max_length=500)
|
|
summary = models.TextField(blank=True)
|
|
|
|
def update_my_model(key, title):
|
|
item = MyModel.objects.get(pk=key)
|
|
item.title = title
|