fix migrations

This commit is contained in:
Andre Medeiros 2022-05-21 12:44:21 -04:00
parent e90f6ef834
commit 90f232a06d
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ CREATE TABLE devices (
id SERIAL PRIMARY KEY,
apns_token character varying(100) UNIQUE,
sandbox boolean,
active_until integer,
grace_period_until integer
expires_at timestamp without time zone,
grace_period_expires_at timestamp without time zone
);