summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/types/date/Year.java
blob: 4c2ce1a1d83e2b3b81a359f6c84783606561994f (plain)
1
2
3
4
5
6
7
8
9
10
package com.redstoner.misc.mysql.types.date;

import com.redstoner.misc.mysql.types.MysqlType;

public class Year extends MysqlType {
	@Override
	public String getName() {
		return "YEAR";
	}
}