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