mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2025-07-04 19:33:15 -07:00
add twitter_handle to account model
This commit is contained in:
18
accounts/migrations/0003_account_twitter_handle.py
Normal file
18
accounts/migrations/0003_account_twitter_handle.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.1.7 on 2021-03-28 22:02
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('accounts', '0002_emailwhitelist'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='account',
|
||||
name='twitter_handle',
|
||||
field=models.CharField(default='@Twitter', max_length=64),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user