001
014
015 package com.liferay.portal.upgrade.v5_2_3.util;
016
017 import java.sql.Types;
018
019
023 public class ResourceCodeTable {
024
025 public static final String TABLE_NAME = "ResourceCode";
026
027 public static final Object[][] TABLE_COLUMNS = {
028 {"codeId", new Integer(Types.BIGINT)},
029 {"companyId", new Integer(Types.BIGINT)},
030 {"name", new Integer(Types.VARCHAR)},
031 {"scope", new Integer(Types.INTEGER)}
032 };
033
034 public static final String TABLE_SQL_CREATE = "create table ResourceCode (codeId LONG not null primary key,companyId LONG,name VARCHAR(255) null,scope INTEGER)";
035
036 public static final String TABLE_SQL_DROP = "drop table ResourceCode";
037
038 }