import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr('string'), tables: DS.hasMany('table'), project: DS.belongsTo('project'), postgresUrl: DS.attr('string')
});
import DS from 'ember-data';
export default DS.Model.extend({
name: DS.attr('string'), tables: DS.hasMany('table'), project: DS.belongsTo('project'), postgresUrl: DS.attr('string')
});