github.com/yuukihogo/migrate@v3.0.0+incompatible/migrate/file/file.go (about)

     1  // Deprecated: package file is deprecated.
     2  // Will be removed soon.
     3  package file
     4  
     5  import (
     6  	"github.com/mattes/migrate/migrate/direction"
     7  )
     8  
     9  type MigrationFile struct {
    10  	Version  uint64
    11  	UpFile   *File
    12  	DownFile *File
    13  }
    14  
    15  type File struct {
    16  	Path      string
    17  	FileName  string
    18  	Version   uint64
    19  	Name      string
    20  	Content   []byte
    21  	Direction direction.Direction
    22  }