1
14
15 package com.liferay.portal.upgrade.v5_2_3.util;
16
17 import java.sql.Types;
18
19
25 public class TagsPropertyTable {
26
27 public static final String TABLE_NAME = "TagsProperty";
28
29 public static final Object[][] TABLE_COLUMNS = {
30 {"propertyId", new Integer(Types.BIGINT)},
31 {"companyId", new Integer(Types.BIGINT)},
32 {"userId", new Integer(Types.BIGINT)},
33 {"userName", new Integer(Types.VARCHAR)},
34 {"createDate", new Integer(Types.TIMESTAMP)},
35 {"modifiedDate", new Integer(Types.TIMESTAMP)},
36 {"entryId", new Integer(Types.BIGINT)},
37 {"key_", new Integer(Types.VARCHAR)},
38 {"value", new Integer(Types.VARCHAR)}
39 };
40
41 public static final String TABLE_SQL_CREATE = "create table TagsProperty (propertyId LONG not null primary key,companyId LONG,userId LONG,userName VARCHAR(75) null,createDate DATE null,modifiedDate DATE null,entryId LONG,key_ VARCHAR(75) null,value VARCHAR(255) null)";
42
43 public static final String TABLE_SQL_DROP = "drop table TagsProperty";
44
45 }