forked from internet2/comanage-grouper-widget
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
added db schema for dashboard widget
Showing
5 changed files
with
669 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" ?> | ||
<!-- | ||
COmanage Registry Notification Widget Plugin Database Schema | ||
Portions licensed to the University Corporation for Advanced Internet | ||
Development, Inc. ("UCAID") under one or more contributor license agreements. | ||
See the NOTICE file distributed with this work for additional information | ||
regarding copyright ownership. | ||
UCAID licenses this file to you under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with the | ||
License. You may obtain a copy of the License at: | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!-- | ||
While this schema mostly works with database prefixes, foreign key constraints | ||
must be specified in raw SQL, which needs the prefixed table name. | ||
--> | ||
<schema version="0.3"> | ||
<table name="co_grouper_lites"> | ||
<field name="id" type="I"> | ||
<key /> | ||
<autoincrement /> | ||
</field> | ||
<field name="co_dashboard_widget_id" type="I"> | ||
<constraint>REFERENCES cm_co_dashboard_widgets(id)</constraint> | ||
</field> | ||
<field name="created" type="T" /> | ||
<field name="modified" type="T" /> | ||
|
||
<index name="co_grouper_lites_i1"> | ||
<col>co_dashboard_widget_id</col> | ||
<unique /> | ||
</index> | ||
</table> | ||
</schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.