mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
f9b9c595cf
* some tests * more tests * tidy up go.mod * more tests * add postgres * beep * again * Set up schema * fix device test
10 lines
246 B
SQL
10 lines
246 B
SQL
-- Table Definition ----------------------------------------------
|
|
|
|
CREATE TABLE devices (
|
|
id SERIAL PRIMARY KEY,
|
|
apns_token character varying(100) UNIQUE,
|
|
sandbox boolean,
|
|
active_until integer,
|
|
grace_period_until integer
|
|
);
|
|
|