RecentNews.js 303 B

123456789101112131415
  1. import {Model, Q} from '@nozbe/watermelondb';
  2. import {field, children, lazy, action} from '@nozbe/watermelondb/decorators';
  3. export default class RecentNews extends Model {
  4. static table = 'recent_news';
  5. // static associations = {};
  6. @field('headline')
  7. headline;
  8. @field('author')
  9. author;
  10. }