Skip to content

Commit

Permalink
deleted .gitattributes.txt and changed role and obj-type values on en…
Browse files Browse the repository at this point in the history
…glish
  • Loading branch information
rogacky11 committed Apr 3, 2024
1 parent a8bbaa0 commit 274ff4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitattributes.txt

This file was deleted.

8 changes: 4 additions & 4 deletions Database/init-db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,12 @@ ALTER TABLE events.event ADD FOREIGN KEY ("status_id") REFERENCES common.status
ALTER TABLE users.user_interest ADD FOREIGN KEY ("interest_id") REFERENCES users.interest ("id");

INSERT INTO users.role ("id", "name") VALUES
(1, 'Użytkownik'),
(2, 'Organizator'),
(1, 'User'),
(2, 'Organiser'),
(3, 'Admin');

INSERT INTO common.object_type ("id", "name") VALUES (1, 'Wydarzenie'),
(2, 'Użytkownik');
INSERT INTO common.object_type ("id", "name") VALUES (1, 'Event'),
(2, 'User');

INSERT INTO common.status ("id", "name", "object_type_id") VALUES
(1, 'Zainteresoway', 2),
Expand Down

0 comments on commit 274ff4e

Please sign in to comment.