/var/www/hkosl.com/demo_google/application/models/Site_info_model.php


1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
    defined
('BASEPATH') OR exit('No direct script access allowed');

    class 
Site_info_model extends BaseModel
    
{
        protected 
$table "site_info";

        public function 
__construct()
        {
            
//disable where deleted = 0
            
parent::$_allowDeleted true;
        }
    }