summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/types/text/TinyText.java
blob: e78160c7761a3419fee3c6e5491ed2a1f3452caa (plain)
1
2
3
4
5
6
7
8
package com.redstoner.misc.mysql.types.text;

public class TinyText extends Text {
	@Override
	public String getName() {
		return "TINY" + super.getName();
	}
}