remove hstore

This commit is contained in:
Your Name 2023-01-10 16:56:51 -05:00
parent 7cd73f6c67
commit 218de03541
2 changed files with 0 additions and 6 deletions

View file

@ -1,7 +1,6 @@
coverage
dateparser
django~=3.2.16
django-hstore
django-markdownx @ git+https://github.com/alphatownsman/django-markdownx.git@e69480c64ad9c5d0499f4a8625da78cf2bb7691b
django-jsoneditor @ git+https://github.com/alphatownsman/django-jsoneditor.git@fa2ae41aeeb34447bd8a808a520e843c853fd16e
django-sass

View file

@ -204,11 +204,6 @@ class User(AbstractUser):
class Preference(models.Model):
user = models.OneToOneField(User, models.CASCADE, primary_key=True)
home_layout = postgres.ArrayField(
postgres.HStoreField(),
blank=True,
default=list,
) # FIXME remove after migration
profile_layout = models.JSONField(
blank=True,
default=list,