FEATURE: Pie chart option for poll results (#8352)

This commit is contained in:
Mark VanLandingham
2019-11-25 11:51:01 -06:00
committed by GitHub
parent 720101b3ee
commit b92a8131c0
23 changed files with 947 additions and 47 deletions

View File

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