Skip to content

Commit 792f64a

Browse files
committed
pre pub
1 parent 1007f3a commit 792f64a

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

packages/utils/verify/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This is a quick way to get started. The sections below provide more detailed ins
4141
### Prerequisites
4242

4343
```bash
44-
# Install pgpm CLI
44+
# Install pgpm CLI
4545
npm install -g pgpm
4646

4747
# Start local Postgres (via Docker) and export env vars
@@ -58,7 +58,7 @@ eval "$(pgpm env)"
5858
pgpm install @pgpm/verify
5959

6060
# 2. Deploy locally
61-
pgpm deploy
61+
pgpm deploy
6262
```
6363

6464
### **Add to a New Project**
@@ -292,16 +292,16 @@ describe('User Table', () => {
292292
email text NOT NULL
293293
)
294294
`);
295-
295+
296296
// Verify table was created
297297
await pg.query(`SELECT verify.verify_table('public', 'users')`);
298298
});
299-
299+
300300
it('should create email index', async () => {
301301
await pg.query(`
302302
CREATE INDEX users_email_idx ON public.users(email)
303303
`);
304-
304+
305305
// Verify index was created
306306
await pg.query(`SELECT verify.verify_index('public', 'users_email_idx')`);
307307
});
@@ -318,19 +318,19 @@ DO $$
318318
BEGIN
319319
-- Create schema
320320
CREATE SCHEMA IF NOT EXISTS app_jobs;
321-
321+
322322
-- Verify schema was created
323323
PERFORM verify.verify_schema('app_jobs');
324-
324+
325325
-- Create table
326326
CREATE TABLE app_jobs.jobs (
327327
id serial PRIMARY KEY,
328328
task_identifier text NOT NULL
329329
);
330-
330+
331331
-- Verify table was created
332332
PERFORM verify.verify_table('app_jobs', 'jobs');
333-
333+
334334
RAISE NOTICE 'Migration completed successfully';
335335
END $$;
336336
```
@@ -450,4 +450,4 @@ None - this is the foundational package that all other packages depend on.
450450

451451
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
452452

453-
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
453+
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.

0 commit comments

Comments
 (0)