示例#1
0
 /**
  * Column definition
  *
  * @param string $column_name the column name
  * @param string $type        the type of the column
  * @param array  $options     column options
  *
  * @return string
  */
 public function column_definition($column_name, $type, $options = null)
 {
     $col = new Ruckusing_Adapter_ColumnDefinition($this, $column_name, $type, $options);
     return $col->__toString();
 }