Advertisement
Guest User

The Adobe Stratus Beta Sample App and PHP/MySQL

a guest
Apr 21st, 2010
712
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.38 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `registrations` (
  2.   `id` BIGINT(20) NOT NULL AUTO_INCREMENT ,
  3.   `appid` BIGINT(20) NOT NULL DEFAULT '0' ,
  4.   `username` VARCHAR(60) NOT NULL DEFAULT '0' ,
  5.   `identity` VARCHAR(120) NOT NULL DEFAULT '0' ,
  6.   `updated` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' ,
  7.   PRIMARY KEY  (`id`) ,
  8.   KEY `updated` (`updated`)
  9. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement