mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
11 lines
246 B
MySQL
11 lines
246 B
MySQL
|
-- Table Definition ----------------------------------------------
|
||
|
|
||
|
CREATE TABLE devices (
|
||
|
id SERIAL PRIMARY KEY,
|
||
|
apns_token character varying(100) UNIQUE,
|
||
|
sandbox boolean,
|
||
|
active_until integer,
|
||
|
grace_period_until integer
|
||
|
);
|
||
|
|