create model

This commit is contained in:
Fred 2015-10-02 14:01:57 +02:00
parent 1252fc67a4
commit d1ec86321f
1 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,13 @@
from django.db import models
# Create your models here.
class Wishlist(models.Model):
pass
class Item(models.Model):
pass
class Part(models.Model):
pass