[eluser]wwonka[/eluser]
I've installed CodeIgniter 1.6.2 with CodeExtinguisher RC 14.2.
Then I created a table test:
Code:
CREATE TABLE IF NOT EXISTS `test` (
`id` int(11) NOT NULL auto_increment,
`email` varchar(255) NOT NULL,
`company` varchar(50) NOT NULL,
`password` varchar(10) NOT NULL,
`created` date NOT NULL,
`modified` date NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
When I log into CodeExtinguisher I can see 'test' in the navigation.
I can add, update and delete records.
Next I created a test.yml file and used tabs instead of spaces: