Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
LevAndrii committed Oct 31, 2024
1 parent d4b0eb3 commit 649a613
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions task.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,17 @@ CREATE TABLE ProductInventory (
PRIMARY KEY (ID)
);
--rollback DROP TABLE ProductInventory;

--changeset mate.academy:5 labels:0.0.2
CREATE TABLE Users (
ID INT,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Email VARCHAR(50),
PRIMARY KEY (ID)
);
--rollback DROP TABLE Users;

--changeset mate.academy:6 labels:0.0.3
CREATE INDEX Email ON Users(Email);
--rollback DROP INDEX Email ON Users;

0 comments on commit 649a613

Please sign in to comment.