浏览代码

auth table added.

Jan Janak 23 年之前
父节点
当前提交
c56ef6614c
共有 1 个文件被更改,包括 7 次插入0 次删除
  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)
+);