feat(server): add PCDN data models and auto-migrate registration#3
Merged
Merged
Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
server/model/pcdn/pcdn.goforPcdnNode,PcdnResource,PcdnPolicy,PcdnDispatchTask, andPcdnMetricSnapshotwith table names, field tags and constraints.server/model/request/pcdn.goand list response DTOs inserver/model/response/pcdn.gofor paging/filtering of each entity.AutoMigrateflow insidebizModel()inserver/initialize/gorm_biz.goso they are included in GORM migrations.idx_pcdn_node_region_isp(region+isp),idx_pcdn_metric_node_time(node_id+snapshot_at),idx_pcdn_dispatch_status_created(status+created_at_unix), plus unique/index keys for node/task/policy identity fields.gofmt.Testing
gofmton modified files to ensure formatting (succeeded).go testfor the affected packages underserver/butgo testin this environment timed out; no package-level unit tests were added for these new models in this change. The migration registration change was validated by compiling/formatting and by inspectingbizModel()to confirm the new types are included.Codex Task