Hi Spunjee,
This issue is because the SQL file is not being run. I'm talking with the creator of the Ember addon to fix this, but for now if you run this code in PHPMyAdmin or your SQL database editor:
CREATE TABLE IF NOT EXISTS `resources` (
`id` int(5) NOT NULL,
`title` VARCHAR(50) NOT NULL,
`logo_url` VARCHAR(100),
`protected` TINYINT(1) NOT NULL,
`text` TEXT NOT NULL,
`navbar_name` VARCHAR(50) NOT NULL,
`navbar_icon` VARCHAR(50) NOT NULL,
`resource_linking` TINYINT(1) NOT NULL,
`resource_pretty_link` VARCHAR(80) NULL,
`navbar_category` VARCHAR(50) NOT NULL,
`rtype` VARCHAR(50) NULL,
`created_at` DATETIME NOT NULL,
`updated_at` DATETIME NOT NULL,
PRIMARY KEY (`id`)
);
After this, it should work fine if installed correctly.
Thanks