Skip to content

Commit

Permalink
removed unused fields
Browse files Browse the repository at this point in the history
  • Loading branch information
sashazykov committed Aug 16, 2014
1 parent fa678df commit dedc43d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions db/migrate/20140816062159_remove_paid_out_from_deposits.rb
@@ -0,0 +1,6 @@
class RemovePaidOutFromDeposits < ActiveRecord::Migration
def change
remove_column :deposits, :paid_out, :integer, :limit => 8
remove_column :deposits, :paid_out_at, :datetime
end
end
4 changes: 1 addition & 3 deletions db/schema.rb
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20140725054216) do
ActiveRecord::Schema.define(version: 20140816062159) do

create_table "collaborators", force: true do |t|
t.integer "project_id"
Expand All @@ -26,8 +26,6 @@
t.integer "project_id"
t.string "txid"
t.integer "confirmations"
t.integer "paid_out", limit: 8
t.datetime "paid_out_at"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "amount", limit: 8
Expand Down

0 comments on commit dedc43d

Please sign in to comment.