mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-09 15:18:11 -05:00
8 lines
168 B
Ruby
8 lines
168 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveMessageSignature < ActiveRecord::Migration[4.2]
|
|
def change
|
|
remove_column :messages, :author_signature, :text
|
|
end
|
|
end
|