001
014
015 package com.liferay.portal.upgrade.v7_0_0.util;
016
017 import java.sql.Types;
018
019
023 public class ExpandoValueTable {
024
025 public static final String TABLE_NAME = "ExpandoValue";
026
027 public static final Object[][] TABLE_COLUMNS = {
028 {"valueId", Types.BIGINT},
029 {"companyId", Types.BIGINT},
030 {"tableId", Types.BIGINT},
031 {"columnId", Types.BIGINT},
032 {"rowId_", Types.BIGINT},
033 {"classNameId", Types.BIGINT},
034 {"classPK", Types.BIGINT},
035 {"data_", Types.CLOB}
036 };
037
038 public static final String TABLE_SQL_CREATE = "create table ExpandoValue (valueId LONG not null primary key,companyId LONG,tableId LONG,columnId LONG,rowId_ LONG,classNameId LONG,classPK LONG,data_ TEXT null)";
039
040 public static final String TABLE_SQL_DROP = "drop table ExpandoValue";
041
042 public static final String[] TABLE_SQL_ADD_INDEXES = {
043 "create index IX_B29FEF17 on ExpandoValue (classNameId, classPK)",
044 "create unique index IX_9DDD21E5 on ExpandoValue (columnId, rowId_)",
045 "create index IX_9112A7A0 on ExpandoValue (rowId_)",
046 "create index IX_1BD3F4C on ExpandoValue (tableId, classPK)",
047 "create unique index IX_D27B03E7 on ExpandoValue (tableId, columnId, classPK)",
048 "create index IX_B71E92D5 on ExpandoValue (tableId, rowId_)"
049 };
050
051 }