Sequel.migration do
  change do
    add_column :schueler, :aktiv_wahl, Integer
    # 0 ist nicht aktiv, 1 schülersprecher, 2 schuko
    set_column_default :schueler, :aktiv_wahl, 0
  end
end