blob: d99ea20c4a0db9cd5b129b3633d6282954f1e7e7 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Database Key Column
|--------------------------------------------------------------------------
|
| this should be the name of the primary key column
|
| Default: 'id'
|
*/
$config['crud_db_key'] = 'id';
/*
|--------------------------------------------------------------------------
| Database Created Column
|--------------------------------------------------------------------------
|
| this should be the name of the record "created on" column
|
| Default: 'id'
|
*/
$config['crud_db_created'] = 'created_on';
/*
|--------------------------------------------------------------------------
| Database Created Column
|--------------------------------------------------------------------------
|
| this should be the name of the record "last modified" column, if you are
| using MySQL, this field should be set to type TIMESTAMP
|
| Default: 'id'
|
*/
$config['crud_db_modified'] = 'mod_on';
/*
|--------------------------------------------------------------------------
| Encrypt Data
|--------------------------------------------------------------------------
|
| Should the data be encrypted before inseration into the database,
| and decrypted before output?
|
| IMPORTANT: You must set this value BEFORE any data is in the tables
|
| Default: false
|
*/
$config['crud_db_encrypted'] = false;
/* End of file crud.php */
/* Location: ./application/config/crud.php */
|