diff options
Diffstat (limited to 'config/sql')
| -rw-r--r-- | config/sql/nonces.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/sql/nonces.sql b/config/sql/nonces.sql new file mode 100644 index 00000000..5407dca5 --- /dev/null +++ b/config/sql/nonces.sql @@ -0,0 +1,13 @@ +-- Table: public.nonces + +-- DROP TABLE public.nonces; + +CREATE TABLE public.nonces +( + nonce text +) +WITH ( + OIDS=FALSE +); + +GRANT ALL ON TABLE public.nonces TO kemal;
\ No newline at end of file |
