From 15e2484b664b0d48c83a3b2ae509fd5b973f1a03 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Thu, 13 Sep 2007 19:06:04 +0000 Subject: [PATCH] Initial entry of yml --- tests/schema.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/tests/schema.yml b/tests/schema.yml index e69de29bb..eefb5efec 100644 --- a/tests/schema.yml +++ b/tests/schema.yml @@ -0,0 +1,30 @@ +--- +tables: + user: + name: user + class: User + declaration: + id: + name: id + type: integer + notnull: true + autoincrement: true + username: + name: username + type: string + length: 20 + notnull: true + group: + name: group + class: Group + declaration: + id: + name: id + type: integer + notnull: true + autoincrement: true + name: + name: name + type: string + length: 20 + notnull: true \ No newline at end of file