Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin1111 committed Dec 24, 2024
1 parent 1f2b6b3 commit df2517f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/fyle/migrations/0023_auto_20241224_0846.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class Migration(migrations.Migration):
DECLARE
tbl RECORD;
BEGIN
FOR tbl IN
SELECT table_schema, table_name
FROM information_schema.tables
FOR tbl IN
SELECT table_schema, table_name
FROM information_schema.tables
WHERE table_type = 'BASE TABLE' AND table_schema = 'public'
LOOP
EXECUTE format('ALTER TABLE %I.%I REPLICA IDENTITY FULL', tbl.table_schema, tbl.table_name);
Expand Down

0 comments on commit df2517f

Please sign in to comment.