001
014
015 package com.liferay.portal.upgrade.v5_0_0.util;
016
017 import java.sql.Types;
018
019
023 public class LayoutSetTable {
024
025 public static final String TABLE_NAME = "LayoutSet";
026
027 public static final Object[][] TABLE_COLUMNS = {
028 {"layoutSetId", new Integer(Types.BIGINT)},
029 {"groupId", new Integer(Types.BIGINT)},
030 {"companyId", new Integer(Types.BIGINT)},
031 {"privateLayout", new Integer(Types.BOOLEAN)},
032 {"logo", new Integer(Types.BOOLEAN)},
033 {"logoId", new Integer(Types.BIGINT)},
034 {"themeId", new Integer(Types.VARCHAR)},
035 {"colorSchemeId", new Integer(Types.VARCHAR)},
036 {"wapThemeId", new Integer(Types.VARCHAR)},
037 {"wapColorSchemeId", new Integer(Types.VARCHAR)},
038 {"css", new Integer(Types.VARCHAR)},
039 {"pageCount", new Integer(Types.INTEGER)},
040 {"virtualHost", new Integer(Types.VARCHAR)}
041 };
042
043 public static final String TABLE_SQL_CREATE = "create table LayoutSet (layoutSetId LONG not null primary key,groupId LONG,companyId LONG,privateLayout BOOLEAN,logo BOOLEAN,logoId LONG,themeId VARCHAR(75) null,colorSchemeId VARCHAR(75) null,wapThemeId VARCHAR(75) null,wapColorSchemeId VARCHAR(75) null,css STRING null,pageCount INTEGER,virtualHost VARCHAR(75) null)";
044
045 public static final String TABLE_SQL_DROP = "drop table LayoutSet";
046
047 }