Skip to content

Commit

Permalink
add middle name
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsauberlt committed May 15, 2024
1 parent a078a35 commit 3056223
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 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,
last_name
last_name,
middle_name
FROM customers
2 changes: 2 additions & 0 deletions sql/versioned/V3__add_middle_name_column.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE customers
ADD COLUMN middle_name varchar(100)
2 changes: 2 additions & 0 deletions sql/versioned/V4__invalid_script.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE customers
ADD COLUMN middle_name varchar(100)
3 changes: 3 additions & 0 deletions test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Docker
- Images = recipe
- Containers = cookies

0 comments on commit 3056223

Please sign in to comment.