-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix object meta search, add object delete, fix routing redirect, updt…
… nginx config
- Loading branch information
Showing
5 changed files
with
82 additions
and
11 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
glued/Config/Migrations/20240224213453_add_desired_to_replicas.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- migrate:up | ||
|
||
ALTER TABLE `t_stor_objects_replicas` | ||
ADD `desired` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Object is desired on device (1 = desired, 0 = not desired). By default the desired state is set to 1, in case that the object is to be deleted, this is to be set to 0. Objects marked with 0 are to be expunged (and once this happens, the particular line in this table deleted)'; | ||
|
||
-- migrate:down | ||
|
||
ALTER TABLE `t_stor_objects_replicas` | ||
DROP `desired`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters