How to know if a column is present within a certain table

Hello there, what I need is a method to find out if a column is
present within a table giving me back a boolean value. Something like:

Mytable.columnpresent(‘my_column’)

Thank you very much for your help.

Best!!

Paco Reyes
Interaction Designer

Hello there, what I need is a method to find out if a column is
present within a table giving me back a boolean value. Something like:

Mytable.columnpresent(‘my_column’)

Mytable.respond_to?(‘my_column’) returns a boolean.

Thanks, it works fine.