Skip to content

Commit

Permalink
Fix doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Moriyoshi Koizumi committed Jul 27, 2016
1 parent b8aae10 commit bd03d95
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a plugin implementation of [XOAUTH2](https://developers.google.com/gmail/xoauth2_protocol).

## Build and installation
## Building and installation

```
./autogen.sh
Expand Down Expand Up @@ -95,8 +95,7 @@ BEGIN TRANSACTION;
CREATE TABLE users (id INTEGER PRIMARY KEY, name VARCHAR, password VARCHAR, realm VARCHAR);
INSERT INTO "users" VALUES(1,'test','test','example.com');
CREATE TABLE props (id INTEGER PRIMARY KEY, user_id INTEGER, name VARCHAR, value VARCHAR, FOREIGN KEY (user_id) REFERENCES users (id));
INSERT INTO "props" VALUES(1,1,'test','test');
INSERT INTO "props" VALUES(2,1,'userPassword','*');
INSERT INTO "props" VALUES(3,1,'oauth2BearerTokens','token');
INSERT INTO "props" VALUES(1,1,'userPassword','*');
INSERT INTO "props" VALUES(2,1,'oauth2BearerTokens','token');
COMMIT;
```

0 comments on commit bd03d95

Please sign in to comment.