-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from printeers/feature/retain-empty-lines
Remove deletion of empty lines
Showing
5 changed files
with
20 additions
and
23 deletions.
There are no files selected for viewing
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
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,2 +1,3 @@ | ||
create schema if not exists "factory"; | ||
|
||
create schema if not exists "warehouse"; |
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
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,8 +1,15 @@ | ||
create sequence "factory"."seq_machines_id"; | ||
|
||
create sequence "warehouse"."seq_storage_locations_id"; | ||
|
||
alter table "factory"."machines" add column "id" bigint not null default nextval('factory.seq_machines_id'::regclass); | ||
|
||
alter table "warehouse"."storage_locations" add column "id" bigint not null default nextval('warehouse.seq_storage_locations_id'::regclass); | ||
|
||
CREATE UNIQUE INDEX machines_pk ON factory.machines USING btree (id); | ||
|
||
CREATE UNIQUE INDEX storage_locations_pk ON warehouse.storage_locations USING btree (id); | ||
|
||
alter table "factory"."machines" add constraint "machines_pk" PRIMARY KEY using index "machines_pk"; | ||
|
||
alter table "warehouse"."storage_locations" add constraint "storage_locations_pk" PRIMARY KEY using index "storage_locations_pk"; |
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