Skip to content

Instantly share code, notes, and snippets.

@geoff-parsons
Created May 18, 2009 18:58
Show Gist options
  • Save geoff-parsons/113675 to your computer and use it in GitHub Desktop.
Save geoff-parsons/113675 to your computer and use it in GitHub Desktop.
class ActiveRecord::Base
def self.required_columns
self.columns.reject { |column| column.null }
end
def self.required_column_names
self.required_columns.map { |column| column.name }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment