<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Manager extends Model
{

    public $timestamps = false;
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = ['user_id','organization_id','stripe_cust_id','ach_bank_token','ach_bank_verified',
        'client_id','client_secret','facebook_token','fb_page_id','fb_page_token','twitter_consumer_key',
        'twitter_consumer_secret','twitter_access_token','twitter_access_token_secret','created_at','review_identifier'];

    public function setCreatedAt($value)
    {
         // Do nothing.
    }
    //
    //    public static function where($param0, $param1) {
    //
    //    }
}
