feat: manpage, ?compact, and some changes to formatting
This commit is contained in:
parent
51e33844b1
commit
306e26da46
8 changed files with 120 additions and 21 deletions
|
|
@ -4,18 +4,50 @@ export default async function seed() {
|
|||
await db.insert(Guestbook).values([
|
||||
{
|
||||
id: 1,
|
||||
name: 'alice',
|
||||
message: 'love the site!',
|
||||
url: 'https://example.com',
|
||||
createdAt: new Date('2026-01-20'),
|
||||
name: 'lisek',
|
||||
message: ':)',
|
||||
url: null,
|
||||
createdAt: new Date('2026-03-23'),
|
||||
approved: true,
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: 'bob',
|
||||
message: 'great blog posts',
|
||||
name: 'stripes',
|
||||
message: 'yay signing',
|
||||
url: null,
|
||||
createdAt: new Date('2026-01-18'),
|
||||
createdAt: new Date('2026-03-21'),
|
||||
approved: true,
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
name: 'Evan',
|
||||
message: 'Queue has four silent letters o_O',
|
||||
url: null,
|
||||
createdAt: new Date('2026-01-23'),
|
||||
approved: true,
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: 'your good pal chev',
|
||||
message: 'howdy howdy',
|
||||
url: 'https://youtu.be/dQw4w9WgXcQ?si=lmJDP_U9yTySGD-_',
|
||||
createdAt: new Date('2025-11-19'),
|
||||
approved: true,
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
name: 'Farofa',
|
||||
message: 'Thinking on what to write holdon',
|
||||
url: null,
|
||||
createdAt: new Date('2025-11-03'),
|
||||
approved: true,
|
||||
},
|
||||
{
|
||||
id: 10,
|
||||
name: 'luna',
|
||||
message: 'we love lewis from primal gaming',
|
||||
url: null,
|
||||
createdAt: new Date('2025-08-23'),
|
||||
approved: true,
|
||||
},
|
||||
]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue