Skip to content

Instantly share code, notes, and snippets.

@maxxcrawford
Last active June 30, 2022 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxxcrawford/411543011d2f9b039fb8f73271d9bc37 to your computer and use it in GitHub Desktop.
Save maxxcrawford/411543011d2f9b039fb8f73271d9bc37 to your computer and use it in GitHub Desktop.
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("phones", "0012_relaynumber"),
]
operations = [
migrations.AddField(
model_name="profile",
name="has_phone",
field=models.BooleanField(default=False),
),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment