Answers for "ruby rails how to remove column from table"

6

how to remove columns from rails

rails generate migration RemoveFieldNameFromTableName field_name:datatype

remove_column :table_name, :column_name
Posted by: Guest on February-14-2020

Code answers related to "ruby rails how to remove column from table"

Browse Popular Code Answers by Language