Updated Readme

This commit is contained in:
MitulShah1
2025-04-11 20:37:22 +05:30
parent ea8757954d
commit 8217bf1674
2 changed files with 1 additions and 6 deletions

View File

@@ -49,7 +49,7 @@ type Storage interface {
```
## 📑 Storage Implementations
- [Aerospike](./aerospike/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Aerospike%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-aerospike.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
- [ArangoDB](./arangodb/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+ArangoDB%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-arangodb.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
- [AzureBlob](./azureblob/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Azure+Blob%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-azureblob.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
- [Badger](./badger/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Badger%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-badger.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>

View File

@@ -76,8 +76,6 @@ func (s *Storage) createOrVerifySchema(version int, description string, forceUpd
return err
}
fmt.Println("Schema key:", schemaKey)
// Try to get existing schema
record, err := s.client.Get(nil, schemaKey, "version", "created_at", "updated_at", "description")
if err != nil {
@@ -187,9 +185,6 @@ func (s *Storage) updateSchema(schemaKey *aerospike.Key, version int, descriptio
Description: description,
}
// Log schema update
fmt.Printf("Schema updated from version %d to %d\n", oldVersion, version)
return nil
}