Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
SAK-20080 Add missing Oracle create statement for VALIDATIONACCOUNT_I…
Browse files Browse the repository at this point in the history
…TEM table

git-svn-id: https://source.sakaiproject.org/svn/reference/trunk@88644 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
seththeriault committed Feb 21, 2011
1 parent 98df846 commit 093cb49
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions reference/docs/conversion/sakai_2_8_0_oracle_conversion.sql
Original file line number Diff line number Diff line change
Expand Up @@ -308,3 +308,21 @@ CREATE TABLE SAKAI_MESSAGE_BUNDLE(
);
create sequence SAKAI_MESSAGEBUNDLE_S;
create index SMB_SEARCH on sakai_message_bundle (BASENAME , MODULE_NAME , LOCALE );

-- RES-2: table structure for validationaccount_item
CREATE TABLE VALIDATIONACCOUNT_ITEM (
ID NUMBER(19) NOT NULL,
USER_ID VARCHAR2(255) NOT NULL,
VALIDATION_TOKEN VARCHAR2(255) NOT NULL,
VALIDATION_SENT TIMESTAMP(6),
VALIDATION_RECEIVED TIMESTAMP(6),
VALIDATIONS_SENT NUMBER(10),
STATUS NUMBER(10),
FIRST_NAME VARCHAR2(255) NOT NULL,
SURNAME VARCHAR2(255) NOT NULL,
ACCOUNT_STATUS NUMBER(10),
PRIMARY KEY (ID)
);

create sequence VALIDATIONACCOUNT_ITEM_ID_SEQ;

0 comments on commit 093cb49

Please sign in to comment.