Skip to content

Instantly share code, notes, and snippets.

@paulchubatyy
Created November 13, 2015 12:07
Show Gist options
  • Save paulchubatyy/7584992c3cb92b098ccf to your computer and use it in GitHub Desktop.
Save paulchubatyy/7584992c3cb92b098ccf to your computer and use it in GitHub Desktop.
Cannot use type field in model.
import DS from 'ember-data';
export default DS.Model.extend({
title: DS.attr('string'),
type: DS.attr('number'), // <== this is very wrong, use the alias, Luke!
ppt: DS.attr('number'),
fixed: DS.attr('number')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment