Skip to content

Instantly share code, notes, and snippets.

@mdmunir
Created May 26, 2015 03:40
Show Gist options
  • Save mdmunir/ae22c03a41741798db03 to your computer and use it in GitHub Desktop.
Save mdmunir/ae22c03a41741798db03 to your computer and use it in GitHub Desktop.
Simple Chat Application (Models). Put at folder `app/models`
<?php
namespace app\models;
/**
* Description of Chat
*
* @author Misbahul D Munir <[email protected]>
* @since 1.0
*/
class Chat extends \yii\db\ActiveRecord
{
public static function tableName()
{
return '{{%chat}}';
}
}
<?php
namespace app\models;
/**
* Description of ChatAccount
*
* @author Misbahul D Munir <[email protected]>
* @since 1.0
*/
class ChatAccount extends \yii\db\ActiveRecord
{
public static function tableName()
{
return '{{%chat_account}}';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment