[Mydatabasepilot-cvs] MyDatabasePilot/dbProcessInit AddField.cfm,1.11,1.12
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-06-16 15:35:42
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessInit In directory sc8-pr-cvs1:/tmp/cvs-serv6652/dbProcessInit Modified Files: AddField.cfm Log Message: Functionality Added: [ 755389 ] Added Keys "unsigned" and "zerofill" Index: AddField.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessInit/AddField.cfm,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** AddField.cfm 16 Jun 2003 14:35:44 -0000 1.11 --- AddField.cfm 16 Jun 2003 15:35:39 -0000 1.12 *************** *** 56,61 **** <!--- Create Key "binary" ---> <cfif IsDefined("FORM.binary#i#")><cfset alterSpec[i].binary=TRUE /><cfelse><cfset alterSpec[i].binary=FALSE /></cfif> </cfloop> ! <!-------------------------------------------------> <!--- Invoke alterTable Custom Tag via CFModule ---> --- 56,65 ---- <!--- Create Key "binary" ---> <cfif IsDefined("FORM.binary#i#")><cfset alterSpec[i].binary=TRUE /><cfelse><cfset alterSpec[i].binary=FALSE /></cfif> + <!--- Create Key "unsigned" ---> + <cfif IsDefined("FORM.unsigned#i#")><cfset alterSpec[i].unsigned=TRUE /><cfelse><cfset alterSpec[i].unsigned=FALSE /></cfif> + <!--- Create Key "zerofill" ---> + <cfif IsDefined("FORM.zerofill#i#")><cfset alterSpec[i].zerofill=TRUE /><cfelse><cfset alterSpec[i].zerofill=FALSE /></cfif> </cfloop> ! <!-------------------------------------------------> <!--- Invoke alterTable Custom Tag via CFModule ---> |