mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
9 lines
187 B
Python
Executable file
9 lines
187 B
Python
Executable file
from django.db import models
|
|
|
|
from vendor.timezones.fields import TimeZoneField
|
|
|
|
|
|
|
|
class Profile(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
timezone = TimeZoneField()
|