0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/plugins/poll/db/migrate/20191114160613_add_graph_to_polls.rb
2019-11-25 11:51:01 -06:00

7 lines
177 B
Ruby
Vendored

# frozen_string_literal: true
class AddGraphToPolls < ActiveRecord::Migration[6.0]
def change
add_column :polls, :chart_type, :integer, default: 0, null: false
end
end