Ver Fonte

auth table added.

Jan Janak há 23 anos atrás
pai
commit
c56ef6614c
1 ficheiros alterados com 7 adições e 0 exclusões
  1. 7 0
      scripts/mysql-create.sql

+ 7 - 0
scripts/mysql-create.sql

@@ -12,3 +12,10 @@ create table location (
     key(user,contact)
 );
 
+
+create table auth (
+	realm varchar(255) not null,
+	user varchar(255) not null,
+	a1 varchar(255) not null,
+	last_modified timestamp(14)
+);