Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in SQL by (20.3k points)

I know that you can ask ActiveRecord to list tables in the console using:

ActiveRecord::Base.connection.tables

Is there a command that would list the columns in a given table?

1 Answer

0 votes
by (40.7k points)

The below code will list the column_names from a table:

Model.column_names

e.g. User.column_names

Browse Categories

...