server: db_dump shouldn't export create_time for user_deleted or

host_deleted
This commit is contained in:
Kevin Reed 2018-05-03 15:54:42 -05:00
parent ae17dfb09e
commit b4f0bae523
1 changed files with 2 additions and 6 deletions

View File

@ -307,11 +307,9 @@ void write_host_deleted(HOST_DELETED& host_deleted, FILE* f) {
"<host>\n"
" <id>%lu</id>\n"
" <host_cpid>%s</host_cpid>\n"
" <create_time>%d</create_time>\n"
"</host>\n",
host_deleted.id,
host_deleted.public_cross_project_id,
host_deleted.create_time
host_deleted.public_cross_project_id
);
}
@ -435,11 +433,9 @@ void write_user_deleted(USER_DELETED& user_deleted, FILE* f) {
"<user>\n"
" <id>%lu</id>\n"
" <cpid>%s</cpid>\n"
" <create_time>%d</create_time>\n"
"</user>\n",
user_deleted.id,
user_deleted.public_cross_project_id,
user_deleted.create_time
user_deleted.public_cross_project_id
);
}