repo.or.cz
/
merb_mart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Updating to reflect changes in DM 0.9.1
[merb_mart.git]
/
app
/
models
/
mart
/
accounts
/
bank_account.rb
blob
96a32afe2012726a31e820f4a894beb1b7aedca2
1
module Mart
2
module Accounts
3
class BankAccount < AbstractAccount
4
5
#property :account_subtype, DataMapper::Types::Enum
6
property :account_number, String
7
property :routing_number, String, :length => 20
8
property :bank_name, String, :length => 50
9
10
end
11
end
12
end