Public Vars

Back

modify-column (clj)

(source)

function

(modify-column & col-elems)
Like add-column, accepts any number of SQL elements that describe the new column definition: (modify-column :name [:varchar 64] [:not nil]) MySQL-specific, deprecated. Use `alter-column` and specify the MySQL dialect to get `MODIFY COLUMN`.

Examples