06_wahlfelder.rb 194 B

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