6 lines
135 B
Ruby
6 lines
135 B
Ruby
class ChangeDebatesTitleLength < ActiveRecord::Migration
|
|
def change
|
|
change_column :debates, :title, :string, limit: 80
|
|
end
|
|
end
|