github.com/dkishere/pop@v4.13.1+incompatible/schema_migrations_appengine.go (about)

     1  // +build appengine
     2  
     3  package pop
     4  
     5  import "github.com/gobuffalo/fizz"
     6  
     7  func newSchemaMigrations(name string) fizz.Table {
     8  	return fizz.Table{
     9  		Name: name,
    10  		Columns: []fizz.Column{
    11  			{
    12  				Name:    "version",
    13  				ColType: "string",
    14  				Options: map[string]interface{}{
    15  					"size": 14, // len(YYYYMMDDhhmmss)
    16  				},
    17  			},
    18  		},
    19  		Indexes: []fizz.Index{},
    20  	}
    21  }