summaryrefslogtreecommitdiff
path: root/src/com/redstoner/misc/mysql/types/number/Double.java
blob: b4b1dda222795bb069cec9a4289d3d178683e1d5 (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 Double extends MysqlType {
	@Override
	public String getName() {
		return "DOUBLE";
	}
}