1
22
23 package com.liferay.portal.upgrade.v4_3_0.util;
24
25 import java.sql.Types;
26
27
32 public class AccountTable {
33
34 public static String TABLE_NAME = "Account_";
35
36 public static Object[][] TABLE_COLUMNS = {
37 {"accountId", new Integer(Types.BIGINT)},
38 {"companyId", new Integer(Types.BIGINT)},
39 {"userId", new Integer(Types.BIGINT)},
40 {"userName", new Integer(Types.VARCHAR)},
41 {"createDate", new Integer(Types.TIMESTAMP)},
42 {"modifiedDate", new Integer(Types.TIMESTAMP)},
43 {"parentAccountId", new Integer(Types.BIGINT)},
44 {"name", new Integer(Types.VARCHAR)},
45 {"legalName", new Integer(Types.VARCHAR)},
46 {"legalId", new Integer(Types.VARCHAR)},
47 {"legalType", new Integer(Types.VARCHAR)},
48 {"sicCode", new Integer(Types.VARCHAR)},
49 {"tickerSymbol", new Integer(Types.VARCHAR)},
50 {"industry", new Integer(Types.VARCHAR)},
51 {"type_", new Integer(Types.VARCHAR)},
52 {"size_", new Integer(Types.VARCHAR)}
53 };
54
55 public static String TABLE_SQL_CREATE = "create table Account_ (accountId LONG not null primary key,companyId LONG,userId LONG,userName VARCHAR(75) null,createDate DATE null,modifiedDate DATE null,parentAccountId LONG,name VARCHAR(75) null,legalName VARCHAR(75) null,legalId VARCHAR(75) null,legalType VARCHAR(75) null,sicCode VARCHAR(75) null,tickerSymbol VARCHAR(75) null,industry VARCHAR(75) null,type_ VARCHAR(75) null,size_ VARCHAR(75) null)";
56
57 public static String TABLE_SQL_DROP = "drop table Account_";
58
59 }