10002__memo.sql 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. INSERT INTO
  2. memo (`id`, `content`, `creator_id`)
  3. VALUES
  4. (
  5. 1001,
  6. "#Hello πŸ‘‹ Welcome to memos.",
  7. 101
  8. );
  9. INSERT INTO
  10. memo (
  11. `id`,
  12. `content`,
  13. `creator_id`,
  14. `visibility`
  15. )
  16. VALUES
  17. (
  18. 1002,
  19. '#TODO
  20. - [x] Take more photos about **πŸŒ„ sunset**;
  21. - [x] Clean the room;
  22. - [ ] Read *πŸ“– The Little Prince*;
  23. (πŸ‘† click to toggle status)',
  24. 101,
  25. 'PROTECTED'
  26. );
  27. INSERT INTO
  28. memo (
  29. `id`,
  30. `content`,
  31. `creator_id`,
  32. `visibility`
  33. )
  34. VALUES
  35. (
  36. 1003,
  37. "**[star-history.com](https://star-history.com/)**: The missing GitHub star history graph of GitHub repos.
  38. ![](https://api.star-history.com/svg?repos=usememos/memos&type=Date)",
  39. 101,
  40. 'PUBLIC'
  41. );
  42. INSERT INTO
  43. memo (
  44. `id`,
  45. `content`,
  46. `creator_id`,
  47. `visibility`
  48. )
  49. VALUES
  50. (
  51. 1004,
  52. '#TODO
  53. - [x] Take more photos about **πŸŒ„ sunset**;
  54. - [ ] Clean the classroom;
  55. - [ ] Watch *πŸ‘¦ The Boys*;
  56. (πŸ‘† click to toggle status)
  57. ',
  58. 102,
  59. 'PROTECTED'
  60. );
  61. INSERT INTO
  62. memo (
  63. `id`,
  64. `content`,
  65. `creator_id`,
  66. `visibility`
  67. )
  68. VALUES
  69. (
  70. 1005,
  71. 'δΈ‰δΊΊθ‘ŒοΌŒεΏ…ζœ‰ζˆ‘εΈˆη„‰οΌπŸ‘¨β€πŸ«',
  72. 102,
  73. 'PUBLIC'
  74. );