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