Answers for "rails migration remove columns"

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
0

rails migration remove colum

remove_column :table_name, :column_name
Posted by: Guest on March-19-2021

Code answers related to "rails migration remove columns"

Browse Popular Code Answers by Language