6 lines
132 B
Ruby
6 lines
132 B
Ruby
class AddSummaryToProposals < ActiveRecord::Migration
|
|
def change
|
|
add_column :proposals, :summary, :text, limit: 280
|
|
end
|
|
end
|