aboutsummaryrefslogtreecommitdiffstats
path: root/access/__init__.py
blob: 8a6a964f220f13f9d49f4728a3213c45a15cc7ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

from google.appengine.ext import db

class CalEvent(db.Model):
    title = db.StringProperty(required=True)
    content = db.StringProperty(multiline=True)
    icon = db.IntegerProperty()
    begin = db.DateTimeProperty(required=True)
    datafrom = db.StringProperty(required=True)
    remind = db.IntegerProperty()