001
014
015 package com.liferay.portal.upgrade.v4_3_0.util;
016
017 import java.sql.Types;
018
019
023 public class ListTypeTable {
024
025 public static String TABLE_NAME = "ListType";
026
027 public static Object[][] TABLE_COLUMNS = {
028 {"listTypeId", new Integer(Types.INTEGER)},
029 {"name", new Integer(Types.VARCHAR)},
030 {"type_", new Integer(Types.VARCHAR)}
031 };
032
033 public static String TABLE_SQL_CREATE = "create table ListType (listTypeId INTEGER not null primary key,name VARCHAR(75) null,type_ VARCHAR(75) null)";
034
035 public static String TABLE_SQL_DROP = "drop table ListType";
036
037 }