I\'m using Oracle provider for Entity framework (beta), and I\'m facing a problem.
Our tables have Id columns, which are set to be Identity in StoreGeneratedPattern.
Instead of remember all of this SQL, you could easily do by using Mig# like this:
var schema = new DbSchema(ConnectionString, DbPlatform.Oracle12c);
schema.Alter(db => db.CreateTable("TableName")
.WithPrimaryKeyColumn("Id", DbType.Int32).AsIdentity()
...);
In this example, the Id column will have the required trigger and sequence generated by Mig# automatically.