Index: branches/LCSv2/models/db.py
===================================================================
--- branches/LCSv2/models/db.py	(revision 619)
+++ branches/LCSv2/models/db.py	(revision 620)
@@ -53,5 +53,5 @@
 db.define_table('supervisors',
                 Field('name'),
-                Field('radiocallnum')\
+                Field('radiocallnum')
                 )
 db.supervisors.truncate() # delete all records and reset the counter of the id.
@@ -64,2 +64,9 @@
 db.streets.truncate()
 db.streets.import_from_csv_file(open('streets.csv', 'r')) #import the file
+
+db.define_table('crew',
+                Field('name'),
+                Field('radiocallnum')
+                )
+db.crew.truncate() # delete all records and reset the counter of the id.
+db.crew.import_from_csv_file(open('crew.csv', 'r')) #import the file
