<p>In lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm:</p>
<pre style='color:#555'>&gt; @@ -118,6 +118,21 @@ sub deployment_statements {
&gt;    $self-&gt;next::method($schema, $type, $version, $dir, $sqltargs, @rest);
&gt;  }
&gt;  
&gt; +sub insert {
&gt; +  my ($self, $source, $to_insert) = @_;
&gt; +
&gt; +  # Oracle does not understand INSERT INTO ... DEFAULT VALUES syntax
&gt; +  # Furthermore it does not have any way to insert without specifying any columns
&gt; +  # We can&#39;t fix this in SQLMaker::Oracle because it doesn&#39;t know which column to add to the statement
&gt; +  unless (%$to_insert)
&gt; +  {
&gt; +    my ($col) = $source-&gt;columns;
&gt; +    $to_insert-&gt;{$col} = \&#39;DEFAULT&#39;;
</pre>
<p>Oops. Will fix.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br>Reply to this email directly or <a href="https://github.com/dbsrgits/dbix-class/pull/61/files#r18172173">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/302594__eyJzY29wZSI6Ik5ld3NpZXM6QmVhY29uIiwiZXhwaXJlcyI6MTcyNzYzMzU2NSwiZGF0YSI6eyJpZCI6NDQxNzM4ODV9fQ==--368313464c33de3ff93ae681ca6b16d9398f4008.gif" width="1" /></p>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","description":"View this Pull Request on GitHub","action":{"@type":"ViewAction","url":"https://github.com/dbsrgits/dbix-class/pull/61/files#r18172173","name":"View Pull Request"}}</script>