mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 11:28:18 +00:00
8 lines
146 B
Ruby
8 lines
146 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddTitleToPolls < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :polls, :title, :string
|
||
|
end
|
||
|
end
|