Ivan - Create article and topic datastore [skip ci]

This commit is contained in:
ivan 2016-11-21 16:55:05 -03:00
parent ee5d2b4ad1
commit d227b3f34d
2 changed files with 28 additions and 0 deletions

14
server/models/Article.php Normal file
View File

@ -0,0 +1,14 @@
<?php
class Article extends DataStore {
const TABLE = 'article';
public function getProps() {
return [
'title',
'content',
'lastEdited',
'position'
];
}
}

14
server/models/Topic.php Normal file
View File

@ -0,0 +1,14 @@
<?php
class Topic extends DataStore {
const TABLE = 'topic';
public function getProps() {
return [
'name',
'icon',
'iconColor',
'ownArticleList'
];
}
}