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