summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/types/number/TinyInt.java
blob: 63ad70070b1179863cbbf4076078a3f7b4f58b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.redstoner.misc.mysql.types.number;

public class TinyInt extends Int {
	public TinyInt(int maxSize) {
		super(maxSize);
	}

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