001
014
015 package com.liferay.portal.upgrade.v6_0_0.util;
016
017 import java.sql.Types;
018
019
023 public class SocialRelationTable {
024
025 public static final String TABLE_NAME = "SocialRelation";
026
027 public static final Object[][] TABLE_COLUMNS = {
028 {"uuid_", new Integer(Types.VARCHAR)},
029 {"relationId", new Integer(Types.BIGINT)},
030 {"companyId", new Integer(Types.BIGINT)},
031 {"createDate", new Integer(Types.BIGINT)},
032 {"userId1", new Integer(Types.BIGINT)},
033 {"userId2", new Integer(Types.BIGINT)},
034 {"type_", new Integer(Types.INTEGER)}
035 };
036
037 public static final String TABLE_SQL_CREATE = "create table SocialRelation (uuid_ VARCHAR(75) null,relationId LONG not null primary key,companyId LONG,createDate LONG,userId1 LONG,userId2 LONG,type_ INTEGER)";
038
039 public static final String TABLE_SQL_DROP = "drop table SocialRelation";
040
041 }