Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create V3__add_middle_name.sql #10

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sql/repeatable/R__create_customers_view.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
CREATE OR REPLACE VIEW v_customers AS
SELECT first_name,
SELECT first_name,
middle_name
last_name
FROM customers
FROM customers
1 change: 1 addition & 0 deletions sql/versioned/V3__add_middle_name.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE customers ADD COLUMN middle_name varchar(100)
Loading