You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
231 B

<?php
namespace app;
use common\database\Repository;
class PostRepository extends Repository {
protected $table = 'posts';
protected $primary_key = 'post_id';
protected $fields = ['post_id', 'user_id', 'content'];
}