001
014
015 package com.liferay.portal.upgrade.v4_3_3.util;
016
017 import java.sql.Types;
018
019
023 public class SCLicenseTable {
024
025 public static String TABLE_NAME = "SCLicense";
026
027 public static Object[][] TABLE_COLUMNS = {
028 {"licenseId", new Integer(Types.BIGINT)},
029 {"name", new Integer(Types.VARCHAR)},
030 {"url", new Integer(Types.VARCHAR)},
031 {"openSource", new Integer(Types.BOOLEAN)},
032 {"active_", new Integer(Types.BOOLEAN)},
033 {"recommended", new Integer(Types.BOOLEAN)}
034 };
035
036 public static String TABLE_SQL_CREATE = "create table SCLicense (licenseId LONG not null primary key,name VARCHAR(75) null,url STRING null,openSource BOOLEAN,active_ BOOLEAN,recommended BOOLEAN)";
037
038 public static String TABLE_SQL_DROP = "drop table SCLicense";
039
040 }