C R E A T E   T A B L E   u s e r s   ( 
 
         i d   S E R I A L   P R I M A R Y   K E Y , 
 
         n a m e   t e x t , 
 
         u s e r n a m e   t e x t   U N I Q U E , 
 
         p a s s w o r d   c h a r a c t e r   v a r y i n g ( 3 2 ) , 
 
         e m a i l   t e x t   U N I Q U E 
 
 ) ; 
 
 
 
 C R E A T E   T A B L E   p r o j e c t s   ( 
 
         i d   S E R I A L   P R I M A R Y   K E Y , 
 
         n a m e   t e x t , 
 
         d a t e   t i m e s t a m p   w i t h   t i m e   z o n e , 
 
         c l o s e d   b o o l e a n 
 
 ) ; 
 
 
 
 C R E A T E   T A B L E   p r o j e c t _ u s e r s   ( 
 
         i d   S E R I A L   P R I M A R Y   K E Y , 
 
         p r o j e c t _ i d   i n t e g e r   R E F E R E N C E S   p r o j e c t s ( i d )   O N   U P D A T E   C A S C A D E   O N   D E L E T E   C A S C A D E , 
 
         u s e r _ i d   i n t e g e r   R E F E R E N C E S   u s e r s ( i d )   O N   U P D A T E   C A S C A D E   O N   D E L E T E   C A S C A D E , 
 
         p a r e n t _ i d   i n t e g e r   R E F E R E N C E S   p r o j e c t _ u s e r s ( i d ) 
 
 ) ; 
 
 
 
 C R E A T E   T A B L E   t a s k s   ( 
 
         i d   S E R I A L   P R I M A R Y   K E Y , 
 
         p r o j e c t _ u s e r _ i d   i n t e g e r   R E F E R E N C E S   p r o j e c t _ u s e r s ( i d )   O N   U P D A T E   C A S C A D E   O N   D E L E T E   C A S C A D E , 
 
         n a m e   t e x t , 
 
         d a t e   t i m e s t a m p   w i t h   t i m e   z o n e , 
 
         c l o s e d   b o o l e a n 
 
 ) ; 
 
 
 
 C R E A T E   T A B L E   t a s k _ c o m m e n t s   ( 
 
         i d   S E R I A L   P R I M A R Y   K E Y , 
 
         t a s k _ i d   i n t e g e r   R E F E R E N C E S   t a s k s ( i d )   O N   U P D A T E   C A S C A D E   O N   D E L E T E   C A S C A D E , 
 
         c o m m e n t   t e x t , 
 
         d a t e   t i m e s t a m p   w i t h   t i m e   z o n e 
 
 ) ; 