Hmmm since you have the solution to my problem...
In fact I already have some of the properties of the "TURBINE_USER", such as
login/pwd, in another table named "WEBAPP_USER" :

          Equivalence
               |
TURBINE_USER   |   WEBAPP_USER
---------------|--------------
LOGIN_NAME     |   ID
PASSWORD_VALUE |   PWD

But my WEBAPP_USER table doesn't have any of the columns of the TURBINE_USER
one. I just want to have a common login/pass for my two webapps, so that I
don't have to create user twice. What's the simple way ?

> De : David Sean Taylor [mailto:[EMAIL PROTECTED]]
>
> How different is your schema from the original TURBINE table?
> If your table is entirely different, you may want to just
> relate the two
> tables and leave the default Turbine security in place:
>
>     <foreign-key foreignTable="TURBINE_USER" onDelete="cascade">
>       <reference local="SUBSCRIBER_ID" foreign="USER_ID"/>
>     </foreign-key>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to