hoonsbara / octalforty-wizardby

Automatically exported from code.google.com/p/octalforty-wizardby
1 stars 0 forks source link

Template included by "include-template" is included in reverse order #23

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
This MDL:

  templates:
    table template SimpleAudit:
      add column CreatedAt type => "DateTime!"
      add column UpdatedAt type => "DateTime?"
      add column DeletedAt type => "DateTime?"

  version 20100729101657:
    Account:
      include-template SimpleAudit

Produces:

create table [Account] (
  [DeletedAt] datetime null ,
  [UpdatedAt] datetime null ,
  [CreatedAt] datetime not null
);

Original issue reported on code.google.com by anton.go...@gmail.com on 13 Aug 2010 at 9:52

GoogleCodeExporter commented 8 years ago
This issue was updated by revision r176.

Original comment by anton.go...@gmail.com on 13 Aug 2010 at 9:56