10002__memo.sql 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. INSERT INTO
  2. memo (`id`, `content`, `creator_id`)
  3. VALUES
  4. (
  5. 1,
  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. 2,
  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. 3,
  37. "**[Slash](https://github.com/boojack/slash)**: A bookmarking and url shortener, save and share your links very easily.
  38. ![](https://github.com/boojack/slash/raw/main/resources/demo.gif)
  39. **[TechStack](https://github.com/Get-Tech-Stack/TechStack)**: A browser extension that will display the technology stack of the GitHub repository.
  40. ![](https://github.com/Get-Tech-Stack/TechStack/blob/main/img/1.png?raw=true)",
  41. 101,
  42. 'PUBLIC'
  43. );
  44. INSERT INTO
  45. memo (
  46. `id`,
  47. `content`,
  48. `creator_id`,
  49. `visibility`
  50. )
  51. VALUES
  52. (
  53. 4,
  54. '#TODO
  55. - [x] Take more photos about **πŸŒ„ sunset**;
  56. - [ ] Clean the classroom;
  57. - [ ] Watch *πŸ‘¦ The Boys*;
  58. (πŸ‘† click to toggle status)
  59. ',
  60. 102,
  61. 'PROTECTED'
  62. );
  63. INSERT INTO
  64. memo (
  65. `id`,
  66. `content`,
  67. `creator_id`,
  68. `visibility`
  69. )
  70. VALUES
  71. (
  72. 5,
  73. 'δΈ‰δΊΊθ‘ŒοΌŒεΏ…ζœ‰ζˆ‘εΈˆη„‰οΌπŸ‘¨β€πŸ«',
  74. 102,
  75. 'PUBLIC'
  76. );