docbrown/db/migrate/20180716182629_add_description_to_chat_channels.rb
Ben Halpern e2dbd7cfcc
Remove beta label on /connect and other small changes (#589)
* Remove beta label on /connect and other small changes

* Add better placeholder for narrow screens

* Adjust comma/bracket placement

* Add description to chat channels
2018-07-16 14:48:38 -04:00

5 lines
142 B
Ruby

class AddDescriptionToChatChannels < ActiveRecord::Migration[5.1]
def change
add_column :chat_channels, :description, :string
end
end