projects
/
osqa.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
show information about the badge you just got in the message notification instead...
[osqa.git]
/
forum_modules
/
mysqlfulltext
/
models.py
1
from django.db import models
2
3
class MysqlFtsIndex(models.Model):
4
node = models.OneToOneField('Node', related_name='ftsindex')
5
body = models.TextField()
6
title = models.CharField(max_length=300)
7
tagnames = models.CharField(max_length=255)
8
9
class Meta:
10
managed = False
11
app_label = 'forum'