?? columns.vm
字號:
#foreach ($col in $table.Columns) #set ( $type = $dbprops.get($col.Type) ) #if ($type == "INT" || $type == "TEXT") #set ( $size = "" ) #else #set ( $size = $col.printSize() ) #end #if ( $dbprops.get("suppressDefaults") == "true" ) #set ( $default = "" ) #else #set ( $default = $col.DefaultSetting ) #end #if ( ($dbprops.get("removeNotNullWithAutoIncrement") == "true") && $col.isAutoIncrement() && $col.isNotNull() ) #set ( $nullString = "" ) #else #set ( $nullString = $strings.select($col.isNotNull(), $dbprops.get("NOTNULL"),"NULL") ) #end #if ($col.isAutoIncrement() && $table.IdMethod == "native") #set ( $autoIncrement = $dbprops.get("AUTOINCREMENT") ) #else #set ( $autoIncrement = " " ) #end #set ( $entry = "$col.Name $type $size $default $nullString $autoIncrement," ) $strings.sub($strings.collapseSpaces($entry)," ,",",")#end
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -