Skip to content

Instantly share code, notes, and snippets.

@mcrider
Created August 9, 2011 23:44
Show Gist options
  • Save mcrider/1135506 to your computer and use it in GitHub Desktop.
Save mcrider/1135506 to your computer and use it in GitHub Desktop.
Proposed schema for notifciation mailing list schema
<!--
*
* TABLE notification_mail_list
*
-->
<table name="notification_mail_list">
<field name="subscription_id" type="I8">
<KEY />
<AUTOINCREMENT/>
</field>
<field name="email" type="X">
<NOTNULL/>
</field>
<field name="confirmed" type="I1">
<NOTNULL/>
<DEFAULT VALUE="0"/>
</field>
<field name="context" type="I8">
<NOTNULL/>
</field>
<descr>Stores subscriptions to the notification mailing list</descr>
</table>
@asmecher
Copy link

OK, sounds good. Go for it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment