diff --git a/.gitignore b/.gitignore index 5357bbe..7377e6f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *~ venv* -*.pyc \ No newline at end of file +*.pyc +.idea* \ No newline at end of file diff --git a/flashy/flashcards/models.py b/flashy/flashcards/models.py index 71a8362..60cb68f 100644 --- a/flashy/flashcards/models.py +++ b/flashy/flashcards/models.py @@ -1,3 +1,4 @@ from django.db import models -# Create your models here. +class FlashcardMask(models.Model): + ranges = models.CharField(max_length=255) \ No newline at end of file