-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
663694b
commit e231989
Showing
6 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
CREATE TABLE foo (id serial not null, bar_id int references bar(id)); | ||
CREATE TABLE bar (id serial not null); | ||
CREATE TABLE foo (id integer not null, bar_id integer references bar(id)); | ||
CREATE TABLE bar (id integer not null); | ||
|
4 changes: 2 additions & 2 deletions
4
internal/endtoend/testdata/join_table_name/mysql/go/models.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
internal/endtoend/testdata/join_table_name/mysql/go/query.sql.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
CREATE TABLE bar (id serial not null); | ||
CREATE TABLE foo (id serial not null, bar integer references bar(id)); | ||
CREATE TABLE bar (id integer not null); | ||
CREATE TABLE foo (id integer not null, bar integer references bar(id)); | ||
|