4a3f3df9cab079354e8a9f4cf6c56f616f1ea0ab kent Fri Apr 6 16:29:22 2012 -0700 Removing MySQL linking dependency. diff --git src/hg/autoSql/doc.as src/hg/autoSql/doc.as deleted file mode 100644 index 5883e03..0000000 --- src/hg/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" - )