1
14
15 package com.liferay.portal.upgrade.v4_3_0.util;
16
17 import java.sql.Types;
18
19
25 public class JournalArticleImageTable {
26
27 public static String TABLE_NAME = "JournalArticleImage";
28
29 public static Object[][] TABLE_COLUMNS = {
30 {"articleImageId", new Integer(Types.BIGINT)},
31 {"groupId", new Integer(Types.BIGINT)},
32 {"articleId", new Integer(Types.VARCHAR)},
33 {"version", new Integer(Types.DOUBLE)},
34 {"elName", new Integer(Types.VARCHAR)},
35 {"languageId", new Integer(Types.VARCHAR)},
36 {"tempImage", new Integer(Types.BOOLEAN)}
37 };
38
39 public static String TABLE_SQL_CREATE = "create table JournalArticleImage (articleImageId LONG not null primary key,groupId LONG,articleId VARCHAR(75) null,version DOUBLE,elName VARCHAR(75) null,languageId VARCHAR(75) null,tempImage BOOLEAN)";
40
41 public static String TABLE_SQL_DROP = "drop table JournalArticleImage";
42
43 }