Answers for "rails migration to delete a table in the db"

0

rails migration remove colum

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

rails migration remove column

rails g migration Remove..From.. col1:type col2:type col3:type

#Exemple :

rails g migration RemoveCountryFromSampleApps country:string
Posted by: Guest on February-04-2021

Code answers related to "rails migration to delete a table in the db"

Browse Popular Code Answers by Language