Skip to content

Instantly share code, notes, and snippets.

View redbassett's full-sized avatar

Enrico Grillo redbassett

View GitHub Profile
@redbassett
redbassett / keybase.md
Created March 27, 2014 04:35
Verification for keybase.io

Keybase proof

I hereby claim:

  • I am redbassett on github.
  • I am redbassett (https://keybase.io/redbassett) on keybase.
  • I have a public key whose fingerprint is 1994 892F 768E 69B0 4E0B EBC3 A444 9477 4283 B27A

To claim this, I am signing this object:

@redbassett
redbassett / gist:3151897
Created July 20, 2012 17:01
Notifications Table
CREATE TABLE IF NOT EXISTS `notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`phone` varchar(12) NOT NULL,
`message` varchar(140) NOT NULL,
`timestampCreated` int(10) NOT NULL,
`timestampDispatched` int(11) NOT NULL,
`email` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;