improve documentation
This commit is contained in:
parent
232463e1db
commit
0826963742
16 changed files with 80 additions and 28 deletions
|
|
@ -6,7 +6,7 @@ import (
|
|||
"github.com/go-pg/migrations"
|
||||
)
|
||||
|
||||
const ProfileTable = `
|
||||
const profileTable = `
|
||||
CREATE TABLE profiles (
|
||||
id serial NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
||||
|
|
@ -23,7 +23,7 @@ INSERT INTO profiles(account_id) VALUES(2);
|
|||
|
||||
func init() {
|
||||
up := []string{
|
||||
ProfileTable,
|
||||
profileTable,
|
||||
bootstrapAccountProfiles,
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue