Ivan - Create article and topic datastore [skip ci]
This commit is contained in:
parent
ee5d2b4ad1
commit
d227b3f34d
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class Article extends DataStore {
|
||||
const TABLE = 'article';
|
||||
|
||||
public function getProps() {
|
||||
return [
|
||||
'title',
|
||||
'content',
|
||||
'lastEdited',
|
||||
'position'
|
||||
];
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class Topic extends DataStore {
|
||||
const TABLE = 'topic';
|
||||
|
||||
public function getProps() {
|
||||
return [
|
||||
'name',
|
||||
'icon',
|
||||
'iconColor',
|
||||
'ownArticleList'
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue