method
column_exists?
v3.2.13 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::SchemaStatements
column_exists?(table_name, column_name, type = nil, options = {})public
Checks to see if a column exists in a given table.
Examples
# Check a column exists column_exists?(:suppliers, :name) # Check a column exists of a particular type column_exists?(:suppliers, :name, :string) # Check a column exists with a specific definition column_exists?(:suppliers, :name, :string, :limit => 100)
2Notes
Example
Check if id column exists in users table
ActiveRecord::Base.connection.column_exists?(:users, :id)
It also works with strings
It works with strings:
ActiveRecord::Base.connection.column_exists?('users', 'id')
Which is helpful if you need to specify the database/schema to use:
ActiveRecord::Base.connection.column_exists?('secondary.users', 'id')