summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/misc/mysql/types/number/Int.java
blob: 4256f7b3d5ddcb3d34d3bb4fa03711f323885c33 (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 + ")";
	}
}