1
14
15 package com.liferay.portal.upgrade.v5_2_8.util;
16
17 import java.sql.Types;
18
19
25 public class ResourceActionTable {
26
27 public static final String TABLE_NAME = "ResourceAction";
28
29 public static final Object[][] TABLE_COLUMNS = {
30 {"resourceActionId", new Integer(Types.BIGINT)},
31 {"name", new Integer(Types.VARCHAR)},
32 {"actionId", new Integer(Types.VARCHAR)},
33 {"bitwiseValue", new Integer(Types.BIGINT)}
34 };
35
36 public static final String TABLE_SQL_CREATE = "create table ResourceAction (resourceActionId LONG not null primary key,name VARCHAR(255) null,actionId VARCHAR(75) null,bitwiseValue LONG)";
37
38 public static final String TABLE_SQL_DROP = "drop table ResourceAction";
39
40 }