mirror of
https://github.com/flarum/framework.git
synced 2024-11-24 21:43:10 +08:00
fix prefix failing in tests
This commit is contained in:
parent
65dd37278b
commit
6a65993ea5
|
@ -99,7 +99,7 @@ class Post extends AbstractModel
|
|||
$post->number = new Expression('('.$db
|
||||
->table('posts', 'pn')
|
||||
->whereRaw('pn.discussion_id = '.intval($post->discussion_id))
|
||||
->select($db->raw('max(pn.number) + 1'))
|
||||
->select($db->raw('max('. $db->getTablePrefix() .'pn.number) + 1'))
|
||||
->toSql()
|
||||
.')');
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user