* Remove beta label on /connect and other small changes * Add better placeholder for narrow screens * Adjust comma/bracket placement * Add description to chat channels
5 lines
142 B
Ruby
5 lines
142 B
Ruby
class AddDescriptionToChatChannels < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :chat_channels, :description, :string
|
|
end
|
|
end
|