d8feabb353b3c2650facea4afd08c86bb56e5549 kent Fri Apr 6 16:51:54 2012 -0700 Moving autoSql and autoDtd and autoXml back to just under hg. A little autoSql -django fix. diff --git src/utils/autoSql/doc.as src/utils/autoSql/doc.as deleted file mode 100644 index 5883e03..0000000 --- src/utils/autoSql/doc.as +++ /dev/null @@ -1,17 +0,0 @@ -table addressBook -"A simple address book" - ( - string name; "Name - first or last or both, we don't care" - string address; "Street address" - string city; "City" - uint zipCode; "A zip code is always positive, so can be unsigned" - char[2] state; "Just store the abbreviation for the state" - ) - -table symbolCols -"example of enum and set symbolic columns" - ( - int id; "unique id" - enum(male, female) sex; "enumerated column" - set(cProg,javaProg,pythonProg,awkProg) skills; "set column" - )