11craft / schevo

Python DBMS for reliably managing structured data and schema changes

schevo / SCHEMA-PREAMBLE.txt
100644 18 lines (15 sloc) 0.361 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Description of schema."""
 
# All Schevo schema modules must have these lines.
from schevo.schema import *
schevo.schema.prep(locals())
 
# If this schema includes Schevo's icon support, uncomment this entity
# class definition:
#
## class SchevoIcon(E.Entity):
##
## _hidden = True
##
## name = f.string()
## data = f.image()
##
## _key(name)