foodsoft/plugins/polls/db/migrate/20181110000000_create_polls.rb
Philipp Rothmann fb2b4d8a8a chore: rubocop
chore: fix api test conventions

chore: rubocop -A spec/

chore: more rubocop -A

fix failing test

rubocop fixes

removes helper methods that are in my opinion dead code

more rubocop fixes

rubocop -a --auto-gen-config
2023-06-09 17:35:05 +02:00

37 lines
1.1 KiB
Ruby

class CreatePolls < ActiveRecord::Migration[4.2]
def change
create_table :polls do |t|
t.integer :created_by_user_id, null: false
t.string :name, null: false
t.text :description
t.datetime :starts
t.datetime :ends
t.boolean :one_vote_per_ordergroup, default: false, null: false
t.text :required_ordergroup_custom_fields
t.text :required_user_custom_fields
t.integer :voting_method, null: false
t.string :choices, array: true, null: false
t.integer :final_choice, index: true
t.integer :multi_select_count, default: 0, null: false
t.integer :min_points
t.integer :max_points
t.timestamps
end
create_table :poll_votes do |t|
t.references :poll, null: false
t.references :user, null: false
t.references :ordergroup
t.text :note
t.timestamps
t.index %i[poll_id user_id ordergroup_id], unique: true
end
create_table :poll_choices do |t|
t.references :poll_vote, null: false
t.integer :choice, null: false
t.integer :value, null: false
t.index %i[poll_vote_id choice], unique: true
end
end
end