This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/db/migrate/20170525184355_change_message_to_text.rb
2017-05-27 00:34:47 +02:00

6 lines
120 B
Ruby

class ChangeMessageToText < ActiveRecord::Migration
def change
rename_column :messages, :message, :text
end
end