Exemplo n.º 1
0
// CreateTable add new table to a database
func (dao *BaseDAO) CreateTable(tx db.TX) error {
	tx.MustExec(dao.Table.createSQL)
	return nil
}