Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/webdoc
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2008-10-28 21:22:47 +0300
committerJonathan Pryor <jpryor@novell.com>2008-10-28 21:22:47 +0300
commit65434f80c133fbdc1e5b155187377ba39eccb8f1 (patch)
treede3236abfadf9a456a2023e1a1e48eb9d302c962 /webdoc
parent51cc0697c3fccc76221629d44a44434febf952f8 (diff)
migration...
svn path=/trunk/mono-tools/; revision=117283
Diffstat (limited to 'webdoc')
-rw-r--r--webdoc/tables.sql21
1 files changed, 21 insertions, 0 deletions
diff --git a/webdoc/tables.sql b/webdoc/tables.sql
new file mode 100644
index 00000000..2e951946
--- /dev/null
+++ b/webdoc/tables.sql
@@ -0,0 +1,21 @@
+use monodoc;
+drop table person;
+drop table status;
+create table person (
+ name varchar (80) not null,
+ password varchar (20) not null,
+ person_id int not null primary key auto_increment,
+ last_serial int not null,
+ last_update int not null,
+ is_admin int not null
+);
+
+create table status (
+ person_id int not null,
+ serial int not null,
+ status int not null
+);
+
+insert into person (name, password, last_serial, is_admin) values ('miguel@ximian.com', 'login1', 0, 1);
+insert into person (name, password, last_serial) values ('nat@nat.org', 'login2', 0);
+