cubicweb/dataimport/test/data-massimport/schema.py
changeset 12171 970c32a4c7b7
parent 11708 2b11531b8028
equal deleted inserted replaced
12170:faacf884777a 12171:970c32a4c7b7
    46 class TimeZone(EntityType):
    46 class TimeZone(EntityType):
    47     """
    47     """
    48     Entity type for timezone of geonames.
    48     Entity type for timezone of geonames.
    49     See timeZones.txt
    49     See timeZones.txt
    50     """
    50     """
    51     code = String(maxsize=1024, indexed=True)
    51     code = String(maxsize=1024, indexed=True, required=True)
    52     gmt = Float()
    52     gmt = Float()
    53     dst = Float()
    53     dst = Float()
    54     raw_offset = Float()
    54     raw_offset = Float()