Votes module: first commit

This commit is contained in:
2018-10-07 03:06:43 +02:00
parent 2628105be4
commit 78597f6a91
8 changed files with 139 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package cz.marwland.mc.features;
import cz.marwland.mc.core.features.Feature;
public class Votes extends Feature {
private final String SQL_VOTE_QUERY = "INSERT INTO `{prefix}votes` (`uuid`, `date`) VALUES (?, ?)";
}