Skip to content

Commit 2942a1e

Browse files
authored
fix: invalid migration (supabase#30698)
Fixes an invalid migration that was preventing other migration files from being pushed on top. The two `alter table` changes are already in prod migration history under this timestamp, but the `comment` change is not, so we should be safe to just delete it and add it in a separate migration.
1 parent 489e0e1 commit 2942a1e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
alter table public.meetups
22
add column timezone text;
33

4-
comment on column public.meetups is 'Needs to be in America/Los_Angeles format.';
5-
64
alter table public.meetups
7-
add column city text;
5+
add column city text;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment on column meetups.timezone is 'Needs to be in America/Los_Angeles format.';

0 commit comments

Comments
 (0)