Rename the minecraft app to profiles

This commit is contained in:
Trever Fischer
2012-02-18 15:39:50 -05:00
parent db6d0c29d8
commit 6c55e65226
10 changed files with 9 additions and 9 deletions

View File

@@ -1,15 +0,0 @@
from django.db import models
from django.contrib.auth.models import User
class MinecraftProfile(models.Model):
user = models.OneToOneField(User)
mc_username = models.CharField(max_length=30)
def __unicode__(self):
return self.mc_username
class Quote(models.Model):
text = models.CharField(max_length=50)
def __unicode__(self):
return self.text