-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.go
56 lines (50 loc) · 958 Bytes
/
schema.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package mysql
import (
"fmt"
"os"
)
type Schema struct {
tables []*Table
}
func NewSchema() *Schema {
return &Schema{
tables: []*Table{},
}
}
func (this *Schema) Add(model interface{}) *Table {
table := NewTable(model)
this.tables = append(this.tables, table)
return table
}
func (this *Schema) ToFiles(filepath string) {
if len(filepath) > 0 {
fmt.Println("start generation sql files")
defer fmt.Println("done")
}
for _, table := range this.tables {
if err := writeFile(
filepath,
table.getSqlFilename(),
table.getCreateTableSql(),
); err != nil {
panic(err)
}
}
}
func writeFile(filepath, filename, content string) error {
var file *os.File
var err error
if filepath == "" {
file = os.Stdout
} else {
abfile := filepath + filename
file, err = os.Create(abfile)
if err != nil {
return err
}
defer file.Close()
fmt.Printf("create file: %s\n", abfile)
}
fmt.Fprint(file, content)
return nil
}