function book_install() db_sqlapi_install('nook') end function book_schema() return { ['book'] = { ['fields'] = { ['vid'] = {['type'] = 'int', ['unsigned'] = true, ['not null'] = true, ['default'] = 0}, ['nid'] = {['type'] = 'int', ['unsigned'] = true, ['not null'] = true, ['default'] = 0}, ['parent'] = {['type'] = 'int', ['not null'] = true, ['default'] = 0}, ['weight'] = {['type'] = 'int', ['not null'] = true, ['default'] = 0, ['size'] = 'tiny'}}, ['indexes'] = { ['nid'] = {'nid'}, ['parent'] = {'parent'}}, ['primary key'] = {'vid'}}} end