Skip to content

Commit

Permalink
Renamed.
Browse files Browse the repository at this point in the history
  • Loading branch information
les_kopari committed Jan 17, 2004
1 parent ea31ae4 commit 33235e5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions lib/db/schemaGroups_members.xml
@@ -0,0 +1,31 @@
<?xml version="1.0"?>
<schema>
<table name="groups_members">
<field name="id" type="I" size="10">
<KEY/>
<AUTOINCREMENT/>
</field>
<field name="groupid" type="I" size="10" default="0">
<NOTNULL/>
</field>
<field name="userid" type="I" size="10" default="0">
<NOTNULL/>
</field>
<field name="timeadded" type="I" size="10" default="0">
<NOTNULL/>
</field>
</table>
<sql>
<descr>Insert 1 row for testing only...comment out later</descr>
<query platform="postgres|postgres7">
insert into groups_members values (1,1,1,1)
</query>
<query platform="mysql">
insert into groups_members values (1,1,1,1)
</query>
<query platform="oci8po">
insert into groups_members values (1,1,1,1)
</query>
</sql>
</schema>

0 comments on commit 33235e5

Please sign in to comment.