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