summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/types/date/Time.java
blob: 4ead72caba12bafe17232df4adb8981ad34fca05 (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 Time extends MysqlType {
	@Override
	public String getName() {
		return "TIME";
	}
}