Hi All,

I use Elixir for my already exsisting database of personal contacts.
I use this class def.

class Person(Entity):
    using_options(tablename='Persons')

    #fields
    firstname = Field(Unicode, required=True)
    lastname = Field(Unicode, required=True)

    #relations
    address = ManyToMany('Address', inverse='occupants')


Now I want to expand my exsistng database with a Entity and relation for email.

What is the best way to do that Without retypng all the stuff in the database


I also have the idea to add a table to store photographs.
Now my question, is that a good idea or is there another solution.


Thanks for reading this and thinking with me.


With best regards.


Frans.

--
You received this message because you are subscribed to the Google Groups 
"SQLElixir" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sqlelixir?hl=en.

Reply via email to