# ORM tool

After registering [model](. /model.md) and database, call the RunCommand method to execute the ORM command。

func main() {
	// ...registering models
    // ...registering database
    // don't forget import the driver
	orm.RunCommand()
}
1
2
3
4
5
6
go build main.go
./main orm
1
2

# Creating table automatically

./main orm syncdb -h
Usage of orm command: syncdb:
  -db="default": DataBase alias name
  -force=false: drop tables before create
  -v=false: verbose info
1
2
3
4
5

Beego will execute drop table before creating tables if you specify the flag -force=1.

And then use -v to check the SQL.

name := "default"

// drop tables
force := true

// print SQL
verbose := true

err := orm.RunSyncdb(name, force, verbose)
if err != nil {
	fmt.Println(err)
}
1
2
3
4
5
6
7
8
9
10
11
12

If you do not use the -force=1 flag, Beego will create new columns or create new indexes.

But if you wish to update the existing columns or indexes, you need to update them manually.

We have received some feedback mentioning that we would like to support deleting fields, or modifying the definition of a field. For now, we are not considering supporting this type of functionality. This is mainly from a risk perspective. Compared to adding fields, deleting such operations is much more dangerous and difficult to recover. So we are not very willing to expose this kind of functionality.

./main orm sqlall -h
Usage of orm command: syncdb:
  -db="default": DataBase alias name
1
2
3