apollo-backend/migrations/000002_create_devices.up.sql

11 lines
289 B
MySQL
Raw Normal View History

-- Table Definition ----------------------------------------------
CREATE TABLE devices (
id SERIAL PRIMARY KEY,
apns_token character varying(100) UNIQUE,
sandbox boolean,
2022-05-21 16:44:21 +00:00
expires_at timestamp without time zone,
grace_period_expires_at timestamp without time zone
);