Commit 4bcf0a1f authored by Jonathan Johnson's avatar Jonathan Johnson

Change Oracle sequence generation to match what is being created by ORM and...

Change Oracle sequence generation to match what is being created by ORM and other platforms in the form of $table_$column_SQL instead of $table_SEQ
parent 042cfa61
......@@ -408,7 +408,7 @@ BEGIN
END IF;
END;';
$sequenceName = $table . '_SEQ';
$sequenceName = $table . '_' . $name . '_SEQ';
$sequence = new Sequence($sequenceName, $start);
$sql[] = $this->getCreateSequenceSQL($sequence);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment