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

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

public class Text extends MysqlType {
	@Override
	public String getName() {
		return "TEXT";
	}
}