Last active
October 19, 2017 00:21
-
-
Save guyjacks/ec1d6d2b2a56c23a750c961e3e1d7161 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Message (models.Model): | |
| title = models.CharField() | |
| body = models.CharField() | |
| image = models.HStoreField({'filename': 'filename val', 'alt': 'alt val'}) | |
| action = models.HStoreField({'id': 'id_val', 'label': 'label val'}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment