mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
10 lines
289 B
SQL
10 lines
289 B
SQL
-- Table Definition ----------------------------------------------
|
|
|
|
CREATE TABLE devices (
|
|
id SERIAL PRIMARY KEY,
|
|
apns_token character varying(100) UNIQUE,
|
|
sandbox boolean,
|
|
expires_at timestamp without time zone,
|
|
grace_period_expires_at timestamp without time zone
|
|
);
|
|
|