Skip to content

Commit 3f67f73

Browse files
qanghaakyleconroy
authored andcommitted
remove bonuses to special table name list
1 parent f3c2a8c commit 3f67f73

File tree

4 files changed

+2
-37
lines changed

4 files changed

+2
-37
lines changed

internal/endtoend/testdata/inflection/sqlite/go/models.go

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/inflection/sqlite/go/query.sql.go

Lines changed: 0 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/inflection/sqlite/query.sql

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@ SELECT * FROM product_meta;
1111
SELECT * FROM calories;
1212

1313
/* name: GetProductMetadata :many */
14-
SELECT * FROM product_metadata;
15-
16-
/* name: GetBonuses :many */
17-
SELECT * FROM bonuses;
14+
SELECT * FROM product_metadata;

internal/endtoend/testdata/inflection/sqlite/schema.sql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ CREATE TABLE campus (id text not null);
22
CREATE TABLE students (id text not null);
33
CREATE TABLE product_meta (id text not null);
44
CREATE TABLE calories (id text not null);
5-
CREATE TABLE product_metadata (id text not null);
6-
CREATE TABLE bonuses (id text not null);
5+
CREATE TABLE product_metadata (id text not null);

0 commit comments

Comments
 (0)