function upload_install() db_sqlapi_install('upload') end function upload_schema() return { ['upload'] = { ['fields'] = { ['fid'] = {['type'] = 'int', ['unsigned'] = true, ['not null'] = true, ['default'] = 0}, ['nid'] = {['type'] = 'int', ['unsigned'] = true, ['not null'] = true, ['default'] = 0}, ['vid'] = {['type'] = 'int', ['unsigned'] = true, ['not null'] = true, ['default'] = 0}, ['description'] = {['type'] = 'varchar', ['length'] = 255, ['not null'] = true, ['default'] = ''}, ['list'] = {['type'] = 'int', ['unsigned'] = true, ['not null'] = true, ['default'] = 0, ['size'] = 'tiny'}}, ['primary key'] = {'fid', 'vid'}, ['indexes'] = { ['vid'] = {'vid'}, ['nid'] = {'nid'}}}} end