File: posts.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 (9 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
insert into post(post_id, user_id, content, created_at)
values (1,
        1,
        'This new computer is lightning-fast!',
        timestamp(now(), '-1:00:00')),
       (2,
        2,
        '@alice is a haxxor :(',
        timestamp(now(), '-0:30:00'));