移除无用的宏

This commit is contained in:
liyunjia 2024-05-22 06:08:37 +08:00
parent bda646f3b9
commit 96d0bf1bec
2 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@ use sqlx::types::chrono::{self, DateTime};
use crate::db_result::CountResult;
#[derive(Debug, Clone, FromRow, serde::Serialize)]
#[table_name = "feedback"]
pub struct Feedback {
pub id: u64,
pub user_id: u64,

View File

@ -3,7 +3,6 @@ use sqlx::types::chrono::{self, DateTime};
use library::db;
#[derive(Debug, Clone, FromRow, serde::Serialize)]
#[table_name = "player_info"]
pub struct PlayerInfo {
pub id: Option<u64>,
pub username: String,