We'll need to create an Option schema, just like we have the Poll schema, but we'll need to do some additional legwork to make sure our representation makes sense. We'll also need to go back and fix up one thing we omitted from our Poll schema! First, we want to name our module Vocial.Votes.Option instead of Vocial.Votes.Poll (for obvious reasons). Next, we'll need to alias both Vocial.Votes.Poll and Vocial.Votes.Option. This is because we need the sanity helper for referencing the struct of our Option schema, and also because we'll need to reference the Poll schema as well to define our relationship to that table. We'll also need to create a :votes column on the schema; this one should be an integer with a default value of 0. Let's take a look at the finished file with all of those bells and whistles:
defmodule Vocial...