(function(define) {
"use strict";
define(function(require, exports) {
var _ = require('underscore');
var Common = require('./common').Common;
var Raw = function(instance) {
this.knex = instance;
this.client = instance.client;
this.flags = {};
};
_.extend(Raw.prototype, Common, {
_source: 'Raw',
Raw