# -*- coding: utf-8 -*- """ axes The table axes, lists, sections and renderers are used by the lists tool. It defines the relation between axis and granularity """ db.define_table("axes", Field("axis", "string", length=255, notnull=True), Field("granularity", "string", length=255, notnull=True), Field("tr_axis", "string", length=255, notnull=True), Field("tr_granularity", "string", length=255, notnull=True), migrate="axes.table")