Skip to content

Instantly share code, notes, and snippets.

@techwhizbang
Created March 9, 2012 22:14
Show Gist options
  • Save techwhizbang/2008998 to your computer and use it in GitHub Desktop.
Save techwhizbang/2008998 to your computer and use it in GitHub Desktop.
lobos alter :modify not working
(defmigration alter-ip-address-column-for-ipv6-20120125
(up []
(alter :modify
(table :notifications
(column :ip_address (data-type :varchar 45) :not-null))))
(down []
(alter :modify
(table :notifications
(column :ip_address (data-type :varchar 15))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment