]> git.p6c8.net - pcdenotes.git/blob - notes/migrations/0002_alter_note_title.py
Began to write a manager for the Note class to get some logic out of the views
[pcdenotes.git] / notes / migrations / 0002_alter_note_title.py
1 # Generated by Django 3.2.11 on 2022-01-23 21:03
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8 dependencies = [
9 ('notes', '0001_initial'),
10 ]
11
12 operations = [
13 migrations.AlterField(
14 model_name='note',
15 name='title',
16 field=models.CharField(max_length=250),
17 ),
18 ]

patrick-canterino.de