Skip to content

Commit

Permalink
updated generated_classes on test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmvergara committed Jun 22, 2024
1 parent 0093427 commit 9e680c0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/lib/generated_classes.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
// ignore_for_file: non_constant_identifier_names, camel_case_types
import 'package:supabase/supabase.dart';
import 'package:intl/intl.dart';
import 'package:supabase/supabase.dart';

extension TypeSafeTable on SupabaseClient {
SupabaseQueryBuilder get books {
return from('books');
}

SupabaseQueryBuilder get test_table {
return from('test_table');
}
}

class Books {
final BigInt id;
Expand Down Expand Up @@ -481,13 +491,3 @@ class Test_table {
);
}
}

extension TypeSafeTable on SupabaseClient {
SupabaseQueryBuilder get books {
return from('books');
}

SupabaseQueryBuilder get test_table {
return from('test_table');
}
}

0 comments on commit 9e680c0

Please sign in to comment.