- Renamed Pivot to Relation as per Jo's comment :)

This commit is contained in:
MrCasual
2015-09-01 09:26:41 -04:00
parent 0015bdb617
commit f6f8f1390f
6 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace MailPoet\Models;
if(!defined('ABSPATH')) exit;
class RelationSubscriberList extends Model {
public static $_table = MP_PIVOT_SUBSCRIBER_LIST_TABLE;
function __construct() {
parent::__construct();
}
}