Index: trunk/packages/sipb-xen-database/sipb-xen-database/sipb_xen_database/models.py
===================================================================
--- trunk/packages/sipb-xen-database/sipb-xen-database/sipb_xen_database/models.py	(revision 255)
+++ trunk/packages/sipb-xen-database/sipb-xen-database/sipb_xen_database/models.py	(revision 256)
@@ -91,5 +91,5 @@
                           'disks': relation(Disk, backref="machine"),
                           'type': relation(Type),
-                          'users': relation(MachineAccess, backref="machine")});
+                          'acl': relation(MachineAccess, backref="machine")});
 assign_mapper(ctx, MachineAccess, machine_access_table)
 assign_mapper(ctx, NIC, nic_table)
Index: trunk/web/cache_acls.py
===================================================================
--- trunk/web/cache_acls.py	(revision 255)
+++ trunk/web/cache_acls.py	(revision 256)
@@ -41,6 +41,6 @@
         print '%s: %s' % (m.name, ' '.join(people))
         transaction = ctx.current.create_transaction()
-        for u in m.users:
-            ctx.current.delete(u)
+        for a in m.acl:
+            ctx.current.delete(a)
         for p in people:
             ma = MachineAccess(machine_id=m.machine_id, user=p)
Index: trunk/web/controls.py
===================================================================
--- trunk/web/controls.py	(revision 255)
+++ trunk/web/controls.py	(revision 256)
@@ -202,5 +202,5 @@
         for disk in machine.disks:
             ctx.current.delete(disk)
-        for access in machine.users:
+        for access in machine.acl:
             ctx.current.delete(access)
         ctx.current.delete(machine)
