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

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

public class Blob extends MysqlType {
	@Override
	public String getName() {
		return "BLOB";
	}
}