[][src]Constant logins::schema::UPDATE_MIRROR_TIMESTAMPS_TO_MILLIS_SQL

const UPDATE_MIRROR_TIMESTAMPS_TO_MILLIS_SQL: &str = "
    UPDATE loginsM
    SET timeCreated = timeCreated / 1000,
        timeLastUsed = timeLastUsed / 1000,
        timePasswordChanged = timePasswordChanged / 1000
";