Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16475 anikendra 1
<?php
2
App::uses('AppModel', 'Model');
3
/**
4
 * PaytmCalling Model
5
 *
6
 */
7
class PaytmCalling extends AppModel {
8
 
9
/**
10
 * Use table
11
 *
12
 * @var mixed False or table name
13
 */
14
	public $useTable = 'paytm_calling';
15
 
16
/**
17
 * Primary key field
18
 *
19
 * @var string
20
 */
21
	public $primaryKey = 'user_id';
22
 
23
/**
24
 * Display field
25
 *
26
 * @var string
27
 */
28
	public $displayField = 'user_id';
29
 
30
}