INSERT INTO memo (id, content, creator_id)
VALUES
  (
    1,
    '#Hello πŸ‘‹ Welcome to memos.',
    101
  );

INSERT INTO memo (id, content, creator_id, visibility)
VALUES
  (
    2,
    E'#TODO\n- [x] Take more photos about **πŸŒ„ sunset**\n- [x] Clean the room\n- [ ] Read *πŸ“– The Little Prince*\n(πŸ‘† click to toggle status)',
    101,
    'PROTECTED'
  ),
  (
    3,
    E'**[Slash](https://github.com/yourselfhosted/slash)**: A bookmarking and url shortener, save and share your links very easily.\n**[SQL Chat](https://www.sqlchat.ai)**: Chat-based SQL Client',
    101,
    'PUBLIC'
  ),
  (
    4,
    E'#TODO\n- [x] Take more photos about **πŸŒ„ sunset**\n- [ ] Clean the classroom\n- [ ] Watch *πŸ‘¦ The Boys*\n(πŸ‘† click to toggle status)',
    102,
    'PROTECTED'
  ),
  (
    5,
    'δΈ‰δΊΊθ‘ŒοΌŒεΏ…ζœ‰ζˆ‘εΈˆη„‰οΌπŸ‘¨β€πŸ«',
    102,
    'PUBLIC'
  );