mirror of
https://github.com/gofiber/storage.git
synced 2025-12-19 00:38:24 +08:00
Updated Readme
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user