MSDCapstoneProject / JobApplication

2 stars 0 forks source link

REST API for user Tokens #7

Closed NevilDabre closed 7 years ago

NevilDabre commented 7 years ago

Need CRUD Operation for user android tokens

CREATE TABLE users(
    id int(20) NOT NULL AUTO_INCREMENT,
    token varchar(250) NOT NULL,

    PRIMARY KEY(id),
    UNIQUE KEY(token)
    );
NevilDabre commented 7 years ago

delete using only token