Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DROP TABLE IF EXISTS `portabilidade`;
- CREATE TABLE `portabilidade` (
- `id` INT(11) NOT NULL AUTO_INCREMENT,
- `number` VARCHAR(14) DEFAULT NULL,
- `company` VARCHAR(5) DEFAULT NULL,
- `counter` INT(11) DEFAULT NULL,
- `insert_date` datetime DEFAULT NULL,
- `last_access` datetime DEFAULT NULL,
- `lifetime_counter` INT(11) DEFAULT NULL,
- `last_refresh` datetime DEFAULT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement