diff --git a/.gitignore b/.gitignore index 1f64963..d660137 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea go.mod -2024-2-Zdes-budet-nazvanie-UykwHnIE.crt \ No newline at end of file +2024-2-Zdes-budet-nazvanie-UykwHnIE.crt +data/ diff --git a/db/migrations/01_up.sql b/db/migrations/01_up.sql index 20a76dc..3d725fe 100644 --- a/db/migrations/01_up.sql +++ b/db/migrations/01_up.sql @@ -2,6 +2,7 @@ CREATE TABLE IF NOT EXISTS users ( id SERIAL PRIMARY KEY, -- Уникальный идентификатор пользователя login VARCHAR(255) NOT NULL UNIQUE, -- Логин пользователя + email TEXT NOT NULL, password VARCHAR(255) NOT NULL, -- Хэш пароля created_at TIMESTAMP NOT NULL DEFAULT NOW() -- Дата создания пользователя ); @@ -76,4 +77,4 @@ CREATE TABLE IF NOT EXISTS trips_places ( --таблица для сопоста created_at TIMESTAMP NOT NULL DEFAULT NOW(), -- Дата создания записи FOREIGN KEY (trip_id) REFERENCES trips(id) ON DELETE CASCADE, FOREIGN KEY (place_id) REFERENCES places(id) ON DELETE CASCADE -); \ No newline at end of file +);