Skip to content

Commit 85cce1e

Browse files
committed
Add empty lines at end of migration scripts.
1 parent 6b68f7b commit 85cce1e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DROP TABLE Users;
1+
DROP TABLE Users;

database/spanner/examples/migrations2/1481574547_create_users_table.up.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ CREATE UNIQUE INDEX UsersEmailIndex ON Users (Email);
1212
INSERT INTO Users(UserId, Name, Email)
1313
VALUES
1414
(100, "Username", "[email protected]"),
15-
(200, "Username2", "[email protected]");
15+
(200, "Username2", "[email protected]");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ALTER TABLE Users DROP COLUMN city;
1+
ALTER TABLE Users DROP COLUMN city;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ALTER TABLE Users ADD COLUMN city STRING(100);
1+
ALTER TABLE Users ADD COLUMN city STRING(100);

0 commit comments

Comments
 (0)