Skip to content

Commit

Permalink
* modules/lcr: gw table db schema fixes
Browse files Browse the repository at this point in the history
- Added missing defunct column.
- Replaced index lcr_id_idx with index lcr_id_gw_name_idx.
  • Loading branch information
juha-h committed Sep 30, 2009
1 parent 873d035 commit 00634dc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lib/srdb1/schema/gw.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,19 @@
<description>Gateway specific flags</description>
</column>

<column>
<name>defunct</name>
<type>unsigned int</type>
<null/>
<default><null/></default>
<description>If not null, contains unix timestamp telling when gw becomes operational.</description>
</column>

<index>
<name>lcr_id_idx</name>
<name>lcr_id_gw_name_idx</name>
<colref linkend="lcr_id"/>
<colref linkend="gw_name"/>
<unique/>
</index>

</table>

0 comments on commit 00634dc

Please sign in to comment.