Fix XML query IDs with their respective file names

This commit is contained in:
Hyeonguk Ryu 2024-06-17 13:55:38 +09:00
parent bdace357ea
commit 3474667943
No known key found for this signature in database
GPG key ID: BB158EBBA25E8194
29 changed files with 29 additions and 29 deletions

View file

@ -1,4 +1,4 @@
<query id="deleteFavorite" action="delete">
<query id="deleteFavorites" action="delete">
<tables>
<table name="admin_favorite" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getPackageSqlByPath" action="select">
<query id="getPackageSrlByPath" action="select">
<tables>
<table name="autoinstall_packages" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="deleteComments" action="delete">
<query id="deleteModuleComments" action="delete">
<tables>
<table name="comments" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getCommentVotedLog" action="select">
<query id="getCommentVotedLogMulti" action="select">
<tables>
<table name="comment_voted_log" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getTotalCommentList" action="select">
<query id="getTotalCommentCountByGroupStatus" action="select">
<tables>
<table name="comments" alias="comments" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getTotalCommentListWithinMember" action="select">
<query id="getTotalCommentCountWithinMemberByGroupStatus" action="select">
<tables>
<table name="comments" alias="comments" />
<table name="member" alias="member" />

View file

@ -1,4 +1,4 @@
<query id="getReceivedMessages" action="select">
<query id="getReadedMessages" action="select">
<tables>
<table name="member_message" alias="message" />
<table name="member" type="left join">

View file

@ -1,4 +1,4 @@
<query id="getSiteCounterStatus" action="select">
<query id="getCounterStatusDays" action="select">
<tables>
<table name="counter_status" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="deleteDocumentDeclaredLog" action="delete">
<query id="deleteDeclaredDocumentLog" action="delete">
<tables>
<table name="document_declared_log" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="deleteCategory" action="delete">
<query id="deleteModuleCategory" action="delete">
<tables>
<table name="document_categories" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getMonthlyArchivedList" action="select">
<query id="getDailyArchivedList" action="select">
<tables>
<table name="documents" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getHistories" action="select">
<query id="getHistory" action="select">
<tables>
<table name="document_histories" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="insertDocumentExtraKeys" action="insert">
<query id="insertDocumentExtraKey" action="insert">
<tables>
<table name="document_extra_keys" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="updateDownloadCount" action="update">
<query id="updateFileDownloadCount" action="update">
<tables>
<table name="files" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="deleteScrapDocument" action="delete">
<query id="deleteScrapDocumentByDocumentSrl" action="delete">
<tables>
<table name="member_scrap" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="insertGroup" action="insert">
<query id="insertDeniedID" action="insert">
<tables>
<table name="member_denied_user_id" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="updateMemberFindQuesionAnswer" action="update">
<query id="updateMemberFindQuestionAnswer" action="update">
<tables>
<table name="member" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getActionForward" action="select">
<query id="getActionForwardWithModule" action="select">
<tables>
<table name="action_forward" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getLangList" action="select">
<query id="getLangListByName" action="select">
<tables>
<table name="lang" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="selectModuleCategory" action="select">
<query id="getModuleCategory" action="select">
<tables>
<table name="module_categories" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="deleteUnsubscribeBlock" action="delete">
<query id="deleteUnsubscribe" action="delete">
<tables>
<table name="ncenterlite_unsubscribe" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getUnsubscribeBlockList" action="select">
<query id="getUnsubscribeList" action="select">
<tables>
<table name="ncenterlite_unsubscribe" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getUserUnsubscribeBlockConfigByUnsubscribeSrl" action="select">
<query id="getUserUnsubscribeConfigByUnsubscribeSrl" action="select">
<tables>
<table name="ncenterlite_unsubscribe" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="insertUnsubscribeBlock" action="insert">
<query id="insertUnsubscribe" action="insert">
<tables>
<table name="ncenterlite_unsubscribe" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="updatePollTarget" action="update">
<query id="updatePollItemTarget" action="update">
<tables>
<table name="poll_item" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getExpiredSession" action="select">
<query id="getExpiredSessions" action="select">
<tables>
<table name="session" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="insertDeniedIP" action="insert">
<query id="insertDeniedWord" action="insert">
<tables>
<table name="spamfilter_denied_word" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getDocumentsTagList" action="select">
<query id="getAllTagList" action="select">
<tables>
<table name="tags" />
</tables>

View file

@ -1,4 +1,4 @@
<query id="getTrashList" action="select">
<query id="getTrashAllList" action="select">
<tables>
<table name="trash" alias="T" />
<table name="member" alias="M" />