Index: trunk/extensions/SocialProfile/UserStatus/UserStatus.sql |
— | — | @@ -0,0 +1,13 @@ |
| 2 | + |
| 3 | +-- |
| 4 | +-- Table structure `user_status` |
| 5 | +-- |
| 6 | + |
| 7 | +CREATE TABLE IF NOT EXISTS `user_status` ( |
| 8 | + `id` int(11) NOT NULL AUTO_INCREMENT, |
| 9 | + `user_id` int(11) NOT NULL, |
| 10 | + `user_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, |
| 11 | + `user_name` varchar(255) NOT NULL, |
| 12 | + `user_status` text NOT NULL, |
| 13 | + PRIMARY KEY (`id`) |
| 14 | +); |
\ No newline at end of file |
Property changes on: trunk/extensions/SocialProfile/UserStatus/UserStatus.sql |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 15 | + native |