Skip to content

Commit

Permalink
Rake clean on OutgoingPaymentList.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aquaj committed Oct 13, 2016
1 parent b87b460 commit 122caed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
11 changes: 9 additions & 2 deletions db/tables.yml
Expand Up @@ -4348,15 +4348,22 @@ observations:
outgoing_payment_lists:
created_at:
type: datetime
required: true
creator_id:
type: integer
references: user
id:
type: integer
required: true
lock_version:
type: integer
required: true
number:
type: string
updated_at:
type: datetime
required: true
updater_id:
type: integer
references: user
outgoing_payment_modes:
active:
type: boolean
Expand Down
11 changes: 7 additions & 4 deletions test/models/outgoing_payment_list_test.rb
Expand Up @@ -22,10 +22,13 @@
#
# == Table: outgoing_payment_lists
#
# created_at :datetime not null
# id :integer not null, primary key
# number :string
# updated_at :datetime not null
# created_at :datetime
# creator_id :integer
# id :integer not null, primary key
# lock_version :integer default(0), not null
# number :string
# updated_at :datetime
# updater_id :integer
#
require 'test_helper'

Expand Down

0 comments on commit 122caed

Please sign in to comment.