-
Notifications
You must be signed in to change notification settings - Fork 5
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 ianmcorvidae/logins-update
add migrations to replace user agent with session id column in logins table
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
BEGIN; | ||
|
||
SET search_path = public, pg_catalog; | ||
|
||
ALTER TABLE ONLY logins | ||
DROP COLUMN IF EXISTS session_id, | ||
ADD COLUMN IF NOT EXISTS user_agent text, | ||
ADD COLUMN IF NOT EXISTS logout_time timestamp; | ||
|
||
COMMIT; |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
BEGIN; | ||
|
||
SET search_path = public, pg_catalog; | ||
|
||
ALTER TABLE ONLY logins | ||
DROP COLUMN IF EXISTS user_agent, | ||
DROP COLUMN IF EXISTS logout_time, | ||
ADD COLUMN IF NOT EXISTS session_id uuid; | ||
|
||
COMMIT; |