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

from google.appengine.ext import db

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