File: comments.sql

package info (click to toggle)
rust-sqlx 0.8.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,744 kB
  • sloc: sql: 335; python: 268; sh: 71; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
insert into comment(comment_id, post_id, user_id, content, created_at)
values (1,
        1,
        2,
        'lol bet ur still bad, 1v1 me',
        datetime('now', '-50 minutes')),
       (2,
        1,
        1,
        'you''re on!',
        datetime('now', '-45 minutes')),
       (3,
        2,
        1,
        'lol you''re just mad you lost :P',
        datetime('now', '-15 minutes'));