Changes between Version 1 and Version 2 of DeveloperGuidelines/DatabaseSynchronization


Ignore:
Timestamp:
12/24/08 02:25:17 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/DatabaseSynchronization

    v1 v2  
    44All tables which should be replicated need 2 fields:
    55{{{
    6 SQLField('modified_on','datetime',default=now), # Needed for T2's conflict detection anyway
     6SQLField('modified_on','datetime',default=now), # Also needed for T2's conflict detection anyway
    77SQLField('uuid',length=64,default=uuid.uuid4()),
    88}}}
    99
    10 
    11 Export tables as CSV:
    12 
    13 Need clear list of which tables to include - e.g. not lookup lists which are the same across sites, not GIS_keys
    14 
    15 Import tables at the other end:
    16 
     10This functionality needs to be developed further:
     11* BluePrintSynchronisation
    1712
    1813----