mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 08:50:56 +00:00
beego mirror
6b9c3f4824
Summary: The database migrations now can be created using the methods on the migration struct. it does not break any existing migration features. it upgrades the migration struct and adds few more struct types so that the migrations can be efficiently generated for create, alter, reverse, drop. Current Features: * Supports creation of columns * `m.NewCol("name").SetDataType("VARCHAR(10)").SetNullable("true")` * **NOTE** `SetNullable` & `SetDefault` methods should not be called on same column for consistency * Supports addition of primary keys * `m.PriCol("id").SetDataType("INT(10)").SetNullable("true")` * **NOTE** `setAuto(true)` can be only called on Primary keys * Supports addition of unique keys * `m.UniCol("unique_index","column_name").SetDataType("VARCHAR(23)").SetNullable("true")` * **NOTE** `UniCol` can be called again with the same index name to add column to the index * Supports rename of columns * `m.RenameColumn("from_name","to_name")` * Allows standard column methods and methods such that, `SetOldDefault` allows reversibility of renames * TODO: * ForeignKey Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@gmail.com> |
||
---|---|---|
.github | ||
cache | ||
config | ||
context | ||
grace | ||
httplib | ||
logs | ||
migration | ||
orm | ||
plugins | ||
session | ||
swagger | ||
testing | ||
toolbox | ||
utils | ||
validation | ||
.gitignore | ||
.gosimpleignore | ||
.travis.yml | ||
admin_test.go | ||
admin.go | ||
adminui.go | ||
app.go | ||
beego.go | ||
config_test.go | ||
config.go | ||
CONTRIBUTING.md | ||
controller_test.go | ||
controller.go | ||
doc.go | ||
error_test.go | ||
error.go | ||
filter_test.go | ||
filter.go | ||
flash_test.go | ||
flash.go | ||
hooks.go | ||
LICENSE | ||
log.go | ||
mime.go | ||
namespace_test.go | ||
namespace.go | ||
parser.go | ||
policy.go | ||
README.md | ||
router_test.go | ||
router.go | ||
staticfile_test.go | ||
staticfile.go | ||
template_test.go | ||
template.go | ||
templatefunc_test.go | ||
templatefunc.go | ||
tree_test.go | ||
tree.go |
Beego
beego is used for rapid development of RESTful APIs, web apps and backend services in Go. It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific features such as interfaces and struct embedding.
More info at beego.me.
Quick Start
Download and install
go get github.com/astaxie/beego
Create file hello.go
package main
import "github.com/astaxie/beego"
func main(){
beego.Run()
}
Build and run
go build hello.go
./hello
Go to http://localhost:8080
Congratulations! You've just built your first beego app.
Please see Documentation for more.
Features
- RESTful support
- MVC architecture
- Modularity
- Auto API documents
- Annotation router
- Namespace
- Powerful development tools
- Full stack for Web & API
Documentation
Community
- http://beego.me/community
- Welcome to join us in Slack: https://beego.slack.com, you can get invited from here
License
beego source code is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).