001
014
015 package com.liferay.portal.upgrade.v4_3_0.util;
016
017 import java.sql.Types;
018
019
023 public class PollsVoteTable {
024
025 public static String TABLE_NAME = "PollsVote";
026
027 public static Object[][] TABLE_COLUMNS = {
028 {"voteId", new Integer(Types.BIGINT)},
029 {"userId", new Integer(Types.BIGINT)},
030 {"questionId", new Integer(Types.BIGINT)},
031 {"choiceId", new Integer(Types.BIGINT)},
032 {"voteDate", new Integer(Types.TIMESTAMP)}
033 };
034
035 public static String TABLE_SQL_CREATE = "create table PollsVote (voteId LONG not null primary key,userId LONG,questionId LONG,choiceId LONG,voteDate DATE null)";
036
037 public static String TABLE_SQL_DROP = "drop table PollsVote";
038
039 }