mirror of
https://github.com/lemeow125/Django-NotesApp.git
synced 2025-05-17 03:58:05 +08:00
Made content field for note unlimited
This commit is contained in:
parent
ff7934407a
commit
428423c2cc
4 changed files with 22 additions and 3 deletions
18
project/notes/migrations/0009_alter_note_content.py
Normal file
18
project/notes/migrations/0009_alter_note_content.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 4.1.7 on 2023-03-03 15:34
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('notes', '0008_alter_note_owner'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='note',
|
||||
name='content',
|
||||
field=models.TextField(),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue