File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ // import { type MigrateUpArgs, sql } from '@payloadcms/db-postgres'
2+
3+ export const up = async ( ) => { }
4+
5+ // export async function up({ db, payload, req }: MigrateUpArgs): Promise<void> {
6+ // await db.execute(sql`
7+ // ALTER TABLE feeds
8+ // DROP COLUMN key;
9+ // `)
10+ // }
11+
12+ // export async function up({ db, payload, req }: MigrateUpArgs): Promise<void> {
13+ // await db.execute(sql`
14+ // ALTER TABLE _posts_v
15+ // DROP COLUMN version_title;
16+ // `)
17+ // await db.execute(sql`
18+ // ALTER TABLE _posts_v
19+ // DROP COLUMN version_content;
20+ // `)
21+
22+ // await db.execute(sql`
23+ // ALTER TABLE posts
24+ // DROP COLUMN title;
25+ // `)
26+ // await db.execute(sql`
27+ // ALTER TABLE posts
28+ // DROP COLUMN content;
29+ // `)
30+ // }
You can’t perform that action at this time.
0 commit comments