mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-13 11:41:34 +01:00
Removed UserUUIDTable
This commit is contained in:
parent
071645e1f3
commit
18e39d1394
@ -50,7 +50,7 @@ import java.util.*;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class GeoInfoTable extends UserUUIDTable {
|
||||
public class GeoInfoTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_ips";
|
||||
|
||||
|
@ -52,7 +52,7 @@ import java.util.UUID;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class KillsTable extends UserUUIDTable {
|
||||
public class KillsTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_kills";
|
||||
|
||||
|
@ -47,7 +47,7 @@ import java.util.*;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class NicknamesTable extends UserUUIDTable {
|
||||
public class NicknamesTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_nicknames";
|
||||
|
||||
|
@ -43,7 +43,7 @@ import java.util.UUID;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class PingTable extends UserUUIDTable {
|
||||
public class PingTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_ping";
|
||||
|
||||
|
@ -50,7 +50,7 @@ import java.util.stream.Collectors;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class SessionsTable extends UserUUIDTable {
|
||||
public class SessionsTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_sessions";
|
||||
|
||||
|
@ -48,7 +48,7 @@ import java.util.*;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class UserInfoTable extends UserUUIDTable {
|
||||
public class UserInfoTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_user_info";
|
||||
|
||||
|
@ -1,32 +0,0 @@
|
||||
/*
|
||||
* This file is part of Player Analytics (Plan).
|
||||
*
|
||||
* Plan is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License v3 as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Plan is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with Plan. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.djrapitops.plan.db.sql.tables;
|
||||
|
||||
import com.djrapitops.plan.db.SQLDB;
|
||||
|
||||
/**
|
||||
* Represents a Table that uses UUIDs to get their data.
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public abstract class UserUUIDTable extends Table {
|
||||
|
||||
public UserUUIDTable(String name, SQLDB db) {
|
||||
super(name, db);
|
||||
}
|
||||
|
||||
}
|
@ -41,7 +41,7 @@ import java.util.*;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class UsersTable extends UserUUIDTable {
|
||||
public class UsersTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_users";
|
||||
|
||||
|
@ -56,7 +56,7 @@ import java.util.stream.Collectors;
|
||||
*
|
||||
* @author Rsl1122
|
||||
*/
|
||||
public class WorldTimesTable extends UserUUIDTable {
|
||||
public class WorldTimesTable extends Table {
|
||||
|
||||
public static final String TABLE_NAME = "plan_world_times";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user