Adds physical votes to sps table

This commit is contained in:
kikito
2016-04-15 17:16:13 +02:00
parent c5a1b3d1ee
commit 3adcd9c304
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddPhysicalVotesToSpendingProposals < ActiveRecord::Migration
def change
add_column :spending_proposals, :physical_votes, :integer, default: 0
end
end

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20160413122359) do
ActiveRecord::Schema.define(version: 20160415150524) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -315,6 +315,7 @@ ActiveRecord::Schema.define(version: 20160413122359) do
t.integer "cached_votes_up", default: 0
t.tsvector "tsv"
t.string "responsible_name", limit: 60
t.integer "physical_votes", default: 0
end
add_index "spending_proposals", ["author_id"], name: "index_spending_proposals_on_author_id", using: :btree