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

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

public class Decimal extends MysqlType {
	@Override
	public String getName() {
		return "DECIMAL";
	}
}