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

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

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