s = box.schema.create_space('imgs',{engine='vinyl'})
s:format({{name = 'sha256', type = 'string'},
{name = 'fname', type = 'string' , is_nullable = true },
{name = 'modified', type = 'unsigned' , is_nullable = true },
{name = 'size', type = 'unsigned' , is_nullable = true },
{name = 'type', type = 'string' , is_nullable = true },
{name = 'b64data', type = 'varbinary' , is_nullable = true }});
s:create_index('primary')
s = nil