blob: 2cbf76b2c2ab9b2fdc05e9e73b9a754920c17d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
class SimCard < ActiveRecord::Base
attr_accessible :auto_order_card, :sip_account_id, :auth_key, :sim_number
# Validations
#
validates :sim_card_provider_id,
:presence => true
belongs_to :sim_card_provider, :touch => true
validates :sim_card_provider,
:presence => true
validates :sip_account_id,
:presence => true
belongs_to :sip_account
validates :sip_account,
:presence => true
validates :sim_number,
:presence => true
end
|