1
22
23 package com.liferay.portal.upgrade.v5_0_0.util;
24
25 import java.sql.Types;
26
27
32 public class IGImageTable {
33
34 public static final String TABLE_NAME = "IGImage";
35
36 public static final Object[][] TABLE_COLUMNS = {
37 {"uuid_", new Integer(Types.VARCHAR)},
38 {"imageId", new Integer(Types.BIGINT)},
39 {"companyId", new Integer(Types.BIGINT)},
40 {"userId", new Integer(Types.BIGINT)},
41 {"createDate", new Integer(Types.TIMESTAMP)},
42 {"modifiedDate", new Integer(Types.TIMESTAMP)},
43 {"folderId", new Integer(Types.BIGINT)},
44 {"name", new Integer(Types.VARCHAR)},
45 {"description", new Integer(Types.VARCHAR)},
46 {"smallImageId", new Integer(Types.BIGINT)},
47 {"largeImageId", new Integer(Types.BIGINT)},
48 {"custom1ImageId", new Integer(Types.BIGINT)},
49 {"custom2ImageId", new Integer(Types.BIGINT)}
50 };
51
52 public static final String TABLE_SQL_CREATE = "create table IGImage (uuid_ VARCHAR(75) null,imageId LONG not null primary key,companyId LONG,userId LONG,createDate DATE null,modifiedDate DATE null,folderId LONG,name VARCHAR(75) null,description STRING null,smallImageId LONG,largeImageId LONG,custom1ImageId LONG,custom2ImageId LONG)";
53
54 public static final String TABLE_SQL_DROP = "drop table IGImage";
55
56 }