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

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

public class TimeStamp extends MysqlType {
	@Override
	public String getName() {
		return "TIMESTAMP";
	}
}