chiark / gitweb /
sql/setup-pastebin.sql: Missing comma.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 4 Jul 2015 16:57:17 +0000 (17:57 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 4 Jul 2015 17:00:06 +0000 (18:00 +0100)
sql/setup-pastebin.sql

index 06d35449fb878aea8f651e5882005e91f840f107..98331724a8b15b97fec1c29c8ccd3c0f05cb3d6a 100644 (file)
@@ -14,7 +14,7 @@ drop table if exists odin_pastebin_lang;
 drop table if exists odin_pastebin_seq;
 
 create table odin_pastebin_lang
-       (lang varchar(32) primary key
+       (lang varchar(32) primary key,
         descr varchar(64) not null);
 insert into odin_pastebin_lang (lang, descr) values ('txt', 'Plain text');