class AddCommmentsToStaffEmail < ActiveRecord::Migration[6.0]
def change
change_column_comment(:staff_emails, :employee_id, 'ID du commerçant')
end
end
change_column_comment Entrez le nom de la table, le nom de la colonne et le contenu du commentaire dans change_column_comment.
change_column_comment(:table_name, :column_name, 'contents')
Création du fichier de migration
commander
cmd.
$bundel exec rails g migration AddCommentsToTable
Effectuer la migration
commander
cmd.
$bundel exec rake db:migrate
http://hotoolong.hatenablog.com/entry/2018/06/20/083106
Recommended Posts