summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/types/number/Int.java
blob: 7b2fbfd84b950ca444250bc0aa6ba15c5a6d22af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.redstoner.misc.mysql.types.number;

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

public class Int extends MysqlType {
	private int maxSize;

	public Int(int maxSize) {
		this.maxSize = maxSize;
	}

	@Override
	public String getName() {
		return "INT(" + maxSize + ")";
	}
}