5 lines
304 B
SQL
5 lines
304 B
SQL
alter table only {{ index .Options "Namespace" }}.sessions
|
|
add column if not exists not_after timestamptz;
|
|
|
|
comment on column {{ index .Options "Namespace" }}.sessions.not_after is 'Auth: Not after is a nullable column that contains a timestamp after which the session should be regarded as expired.';
|