schema.js 382 B

123456789101112131415
  1. import { appSchema, tableSchema } from "@nozbe/watermelondb";
  2. export const mySchema = appSchema({
  3. version: 1,
  4. tables:[
  5. tableSchema({
  6. name: 'recent_news',
  7. columns:[
  8. {name:'headline',type:'string'},
  9. {name:'author', type:'string'},
  10. {name:'image', type:'string'},
  11. ]
  12. })
  13. ]
  14. })