10002__memo.sql 1.2 KB

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