X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/1fcd2d064dfef0dff9b07a40d0f5d30e662d1d86..ad5ca8bbfbef358919aa877e78dceb27fdc6387a:/db/schema.rb diff --git a/db/schema.rb b/db/schema.rb index 45d7b41..cc61ca3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -14,14 +14,15 @@ ActiveRecord::Schema.define() do end create_table "elections", :force => true do |t| - t.column "name", :string, :limit => 100, :default => "", :null => false - t.column "description", :text, :default => "", :null => false - t.column "anonymous", :integer, :limit => 4, :default => 1, :null => false - t.column "startdate", :datetime - t.column "enddate", :datetime, :null => false - t.column "active", :integer, :limit => 4, :default => 0, :null => false - t.column "user_id", :integer - t.column "type", :string, :limit => 100, :default => "", :null => false + t.column "name", :string, :limit => 100, :default => "", :null => false + t.column "description", :text, :default => "", :null => false + t.column "anonymous", :integer, :limit => 4, :default => 1, :null => false + t.column "startdate", :datetime + t.column "enddate", :datetime, :null => false + t.column "active", :integer, :limit => 4, :default => 0, :null => false + t.column "user_id", :integer + t.column "election_method", :string, :limit => 100, :default => "ssd" + t.column "type", :string, :limit => 100, :default => "", :null => false end add_index "elections", ["user_id"], :name => "fk_user_election"