Pārlūkot izejas kodu

auth table added.

Jan Janak 23 gadi atpakaļ
vecāks
revīzija
c56ef6614c
1 mainītis faili ar 7 papildinājumiem un 0 dzēšanām
  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)
+);