diff --git a/advanced.html b/advanced.html index f45bcb13..6d37bae6 100644 --- a/advanced.html +++ b/advanced.html @@ -836,7 +836,7 @@ db.SetLogger(log.New(os.Stdout, "\r\n" var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Advanced Usage","level":"1.6","depth":1,"next":{"title":"Error Handling","level":"1.6.1","depth":2,"anchor":"#error-handling","path":"advanced.md","ref":"advanced.md#error-handling","articles":[]},"previous":{"title":"Callbacks","level":"1.5","depth":1,"path":"callbacks.md","ref":"callbacks.md","articles":[]},"dir":"ltr"},"config":{"plugins":["github","edit-link"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"fontsettings":{"theme":"night","family":"sans","size":2},"github":{"url":"https://github.com/jinzhu/gorm"},"edit-link":{"label":"Edit This Page","base":"https://github.com/jinzhu/gorm/edit/gh-pages/documents/"},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"GORM Guide","gitbook":"*"},"file":{"path":"advanced.md","mtime":"2017-06-11T12:30:57.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-06-11T12:45:12.045Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Advanced Usage","level":"1.6","depth":1,"next":{"title":"Error Handling","level":"1.6.1","depth":2,"anchor":"#error-handling","path":"advanced.md","ref":"advanced.md#error-handling","articles":[]},"previous":{"title":"Callbacks","level":"1.5","depth":1,"path":"callbacks.md","ref":"callbacks.md","articles":[]},"dir":"ltr"},"config":{"plugins":["github","edit-link"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"fontsettings":{"theme":"night","family":"sans","size":2},"github":{"url":"https://github.com/jinzhu/gorm"},"edit-link":{"label":"Edit This Page","base":"https://github.com/jinzhu/gorm/edit/gh-pages/documents/"},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"GORM Guide","gitbook":"*"},"file":{"path":"advanced.md","mtime":"2017-10-18T10:40:29.845Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-10-18T10:41:23.502Z"},"basePath":".","book":{"language":""}}); }); diff --git a/associations.html b/associations.html index bedd14e5..7ea9cdf7 100644 --- a/associations.html +++ b/associations.html @@ -932,7 +932,7 @@ db.Model(&user).Association("Languages"< diff --git a/callbacks.html b/callbacks.html index 48ccdbe8..ead1f273 100644 --- a/callbacks.html +++ b/callbacks.html @@ -773,7 +773,7 @@ If you want to use those changes in your callbacks, you need to run your SQL in diff --git a/changelog.html b/changelog.html index f930a86e..257986f2 100644 --- a/changelog.html +++ b/changelog.html @@ -743,7 +743,7 @@ diff --git a/crud.html b/crud.html index 5939c36b..0543c431 100644 --- a/crud.html +++ b/crud.html @@ -817,6 +817,10 @@ db.Where("name = 'jinzhu'") db.Where("role = ?", "admin").Or("role = ?", "super_admin").Not("name = ?", "jinzhu").Find(&users) +

SubQuery

+
db.Where("amount > ?", DB.Table("orders").Select("AVG(amount)").Where("state = ?", "paid").QueryExpr()).Find(&orders)
+// SELECT * FROM "orders"  WHERE "orders"."deleted_at" IS NULL AND (amount > (SELECT AVG(amount) FROM "orders"  WHERE (state = 'paid')));
+

Extra Querying option

// Add extra SQL option for selecting SQL
 db.Set("gorm:query_option", "FOR UPDATE").First(&user, 10)
@@ -986,7 +990,7 @@ db.Table("users").Select("JOIN emails ON emails.user_id = users.id AND emails.email = ?", "jinzhu@example.org").Joins("JOIN credit_cards ON credit_cards.user_id = users.id").Where("credit_cards.number = ?", "411111111111").Find(&user)
 

Pluck

-

Query single column from a model as a slice, if you want to query multiple columns, you could use Scan

+

Query single column from a model as a map, if you want to query multiple columns, you could use Scan

var ages []int64
 db.Find(&users).Pluck("age", &ages)
 
@@ -1305,7 +1309,7 @@ db.Set("gorm:save_associations", 
         var gitbook = gitbook || [];
         gitbook.push(function() {
-            gitbook.page.hasChanged({"page":{"title":"CRUD: Reading and Writing Data","level":"1.4","depth":1,"next":{"title":"Create","level":"1.4.1","depth":2,"anchor":"#create","path":"crud.md","ref":"crud.md#create","articles":[]},"previous":{"title":"Association Mode","level":"1.3.3.6","depth":3,"anchor":"#association-mode","path":"associations.md","ref":"associations.md#association-mode","articles":[]},"dir":"ltr"},"config":{"plugins":["github","edit-link"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"fontsettings":{"theme":"night","family":"sans","size":2},"github":{"url":"https://github.com/jinzhu/gorm"},"edit-link":{"label":"Edit This Page","base":"https://github.com/jinzhu/gorm/edit/gh-pages/documents/"},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"GORM Guide","gitbook":"*"},"file":{"path":"crud.md","mtime":"2017-06-11T12:30:57.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-06-11T12:45:12.045Z"},"basePath":".","book":{"language":""}});
+            gitbook.page.hasChanged({"page":{"title":"CRUD: Reading and Writing Data","level":"1.4","depth":1,"next":{"title":"Create","level":"1.4.1","depth":2,"anchor":"#create","path":"crud.md","ref":"crud.md#create","articles":[]},"previous":{"title":"Association Mode","level":"1.3.3.6","depth":3,"anchor":"#association-mode","path":"associations.md","ref":"associations.md#association-mode","articles":[]},"dir":"ltr"},"config":{"plugins":["github","edit-link"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"fontsettings":{"theme":"night","family":"sans","size":2},"github":{"url":"https://github.com/jinzhu/gorm"},"edit-link":{"label":"Edit This Page","base":"https://github.com/jinzhu/gorm/edit/gh-pages/documents/"},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"GORM Guide","gitbook":"*"},"file":{"path":"crud.md","mtime":"2017-10-18T10:40:48.397Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-10-18T10:41:23.502Z"},"basePath":".","book":{"language":""}});
         });
     
 
diff --git a/database.html b/database.html
index 2f12486a..bc240dab 100644
--- a/database.html
+++ b/database.html
@@ -748,7 +748,7 @@ db.Set("gorm:table_options", // Drop model `User`'s table
 db.DropTable(&User{})
 
-// Drop table `users
+// Drop table `users`
 db.DropTable("users")
 
 // Drop model's `User`'s table and table `products`
@@ -830,7 +830,7 @@ db.Model(&User{}).RemoveIndex("idx_user_name&
     
 
diff --git a/development.html b/development.html
index d9e677ac..4638ad7a 100644
--- a/development.html
+++ b/development.html
@@ -772,7 +772,7 @@ db.Callback().RowQuery().Register("publish:update
     
 
diff --git a/index.html b/index.html
index 8bce9794..227841e7 100644
--- a/index.html
+++ b/index.html
@@ -774,7 +774,7 @@
     
 
diff --git a/models.html b/models.html
index 30fa4e27..123f698d 100644
--- a/models.html
+++ b/models.html
@@ -841,7 +841,7 @@ db.Model(&user).Update("name", 
         var gitbook = gitbook || [];
         gitbook.push(function() {
-            gitbook.page.hasChanged({"page":{"title":"Models","level":"1.3","depth":1,"next":{"title":"Model Definition","level":"1.3.1","depth":2,"anchor":"#model-definition","path":"models.md","ref":"models.md#model-definition","articles":[]},"previous":{"title":"Migration","level":"1.2.2","depth":2,"anchor":"#migration","path":"database.md","ref":"database.md#migration","articles":[]},"dir":"ltr"},"config":{"plugins":["github","edit-link"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"fontsettings":{"theme":"night","family":"sans","size":2},"github":{"url":"https://github.com/jinzhu/gorm"},"edit-link":{"label":"Edit This Page","base":"https://github.com/jinzhu/gorm/edit/gh-pages/documents/"},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"GORM Guide","gitbook":"*"},"file":{"path":"models.md","mtime":"2017-06-11T12:30:49.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-06-11T12:45:12.045Z"},"basePath":".","book":{"language":""}});
+            gitbook.page.hasChanged({"page":{"title":"Models","level":"1.3","depth":1,"next":{"title":"Model Definition","level":"1.3.1","depth":2,"anchor":"#model-definition","path":"models.md","ref":"models.md#model-definition","articles":[]},"previous":{"title":"Migration","level":"1.2.2","depth":2,"anchor":"#migration","path":"database.md","ref":"database.md#migration","articles":[]},"dir":"ltr"},"config":{"plugins":["github","edit-link"],"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"fontsettings":{"theme":"night","family":"sans","size":2},"github":{"url":"https://github.com/jinzhu/gorm"},"edit-link":{"label":"Edit This Page","base":"https://github.com/jinzhu/gorm/edit/gh-pages/documents/"},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"GORM Guide","gitbook":"*"},"file":{"path":"models.md","mtime":"2017-10-18T10:40:29.850Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2017-10-18T10:41:23.502Z"},"basePath":".","book":{"language":""}});
         });
     
 
diff --git a/search_index.json b/search_index.json
index 2371a642..5048a3f4 100644
--- a/search_index.json
+++ b/search_index.json
@@ -1 +1 @@
-{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["!=","\"code","\"github.com/jinzhu/gorm\"","\"github.com/jinzhu/gorm/dialects/sqlite\"","\"l1212\")","\"l1212\",","\"test.db\")","(","(almost)","(before/aft","(eager","(ha",")","//","1","1)","1000})","2000","2000)",":=","=","?\",","_","aim","associ","author","auto","base","belong","builder","callback","changelog","code","come","composit","connect","contributor","creat","create/save/update/delete/find)","database\")","db,","db.automigrate(&product{})","db.close()","db.create(&product{code:","db.delete(&product)","db.first(&product,","db.model(&product).update(\"price\",","defer","delet","develop","err","extendable,","fantast","featur","find","friendli","friendly.","full","func","get","github.com/jinzhu/gorm","go","golang,","gorm","gorm.model","gorm.open(\"sqlite3\",","http://github.com/jinzhu","http://twitter.com/zhangjinzhu","https://github.com/jinzhu/gorm/graphs/contributor","id","import","instal","jinzhu","key","l1212","librari","licens","license.","loading)","logger","main","main()","mani","many,","migrat","mit","nil","one,","orm","overview","packag","panic(\"fail","plugin","polymorphism)","preload","price","price:","primari","product","product'","project","quick","read","releas","schema","sql","start","string","struct","support","test","to,","transact","type","u","uint","under","updat","upgrad","v1.0","var","wosmvp@gmail.com","write","{","}"],"database.html":["\"/tmp/gorm.db\")","\"age\")","\"cities(id)\",","\"engine=innodb\"","\"engine=innodb\").automigrate(&user{})","\"engine=innodb\").createtable(&user{})","\"github.com/go","\"github.com/jinzhu/gorm\"","\"github.com/jinzhu/gorm/dialects/mssql\"","\"github.com/jinzhu/gorm/dialects/mysql\"","\"github.com/jinzhu/gorm/dialects/postgres\"","\"github.com/jinzhu/gorm/dialects/sqlite\"","\"host=myhost","\"name\")","\"name\",","\"products\")","\"restrict\")","\"restrict\",","\"sqlserver://username:password@localhost:1433?database=dbname\")","\"text\")","\"user:password@/dbname?charset=utf8&parsetime=true&loc=local\")","&order{})","&product{},","(","(more",")","//","1st","2nd","3rd","4th",":",":=","=","_","`age`","`idx_user_name_age`","`idx_user_name`","`name`","`name`,","`products`","`text`","`user","`user`","`user`'","`users`","abov","add","append","auto","automat","automigr","chang","check","column","column'","connect","creat","data","data.","databas","database'","database,","databases,","databases.","date.","db,","db.automigrate(&user{})","db.automigrate(&user{},","db.close()","db.createtable(&user{})","db.droptable(\"users\")","db.droptable(&user{})","db.droptableifexists(&user{},","db.hastable(\"users\")","db.hastable(&user{})","db.model(&user{}).addforeignkey(\"city_id\",","db.model(&user{}).addindex(\"idx_user_name\",","db.model(&user{}).addindex(\"idx_user_name_age\",","db.model(&user{}).adduniqueindex(\"idx_user_name\",","db.model(&user{}).adduniqueindex(\"idx_user_name_age\",","db.model(&user{}).dropcolumn(\"description\")","db.model(&user{}).modifycolumn(\"description\",","db.model(&user{}).removeindex(\"idx_user_name\")","db.set(\"gorm:table_options\",","dbname=gorm","defer","delet","descript","description'","destin","dialect","dialect,","docker","driver","driver/mysql\"","drivers,","drop","dropcolumn","easier","err","example:","exist","field","first.","foreign","foreignkey","func","given","gorm","gorm.open(\"mssql\",","gorm.open(\"mysql\",","gorm.open(\"postgres\",","gorm.open(\"sqlite3\",","handl","https://github.com/jinzhu/gorm/blob/master/dialect.go","import","includ","index","indexes,","keep","key","linux","mac,","main()","migrat","miss","model","model'","modifi","modifycolumn","multipl","mysql","name","need","note:","offici","ondelet","onupd","order","param","parameter.","parameters)","parsetim","password=mypassword\")","path,","postgresql","protect","refer","rememb","remov","run","schema","schema,","server","server,","sql","sqlite3","sslmode=dis","start","statement","suffix","support","tabl","table(id)","tables,","time.time,","to:","type","uniqu","unsupport","unus","updat","user=gorm","valu","warning:","won't","wrap","write","{","}"],"models.html":["\"`","\"admin\"","\"admin_users\"","\"jinzhu\")","\"prefix_\"","\"profiles\"","\"users\"","'user_languages'","(belong","(db","(ha","(u","(user)","*gorm.db,","*time.tim","+","//","255,","=","==","[]email","[]languag","`age_of_the_beast`","`beast_id`","`birthday`","`created_at`","`createdat`","`createdat`,","`day_of_the_beast`","`deletedat`","`gorm:\"","`gorm:\"auto_increment\"`","`gorm:\"column:age_of_the_beast\"`","`gorm:\"column:beast_id\"`","`gorm:\"column:day_of_the_beast\"`","`gorm:\"index\"`","`gorm:\"index:idx_name_code\"`","`gorm:\"many2many:user_languages;\"`","`gorm:\"not","`gorm:\"primary_key\"`","`gorm:\"size:255\"`","`gorm:\"type:varchar(100);unique\"`","`gorm:\"type:varchar(100);unique_index\"`","`id`","`id`,","`index`","`name`","`primary_key`","`profiles`","`tablename`","`type`","`unique_index`","`update`","`updatedat`","`updatedat`,","`user`","`user`'","`user`,","`users`","add","address","address1","address2","affect","ag","anim","animalid","appli","base","billingaddress","billingaddressid","birthday","bool","case","chang","code","column","combin","convent","creat","createdat","createdat,","creditcard","creditcard'","current","database,","db.create(&user)","db.model(&user).update(\"createdat\",","db.model(&user).update(\"name\",","db.save(&user)","db.singulartable(true)","default","defaulttablenam","defaulttablename;","defaulttablenamehandl","defin","definit","delet","deletedat","deletedat'","deletedat,","disabl","edit","email","email'","emb","exist","field","field'","field,","find","findabl","foreign","func","global","gorm.defaulttablenamehandl","gorm.model","gorm.model,","have","id","id,","ignor","ignorem","includ","index","int","int64","join","key","key)","languag","mani","model","model'","model,","more","name","name'","name,","need","null\"`","null;unique\"`","nullabl","num","number","on","overrid","plural","post","primari","querying,","record","record'","refer","relationship","relationship,","reset","return","rule","same","save","save()","set","shippingaddress","shippingaddressid","size","snake","soft","sql","sql.nullint64","sql.nullstr","store","string","string)","struct","subscrib","tabl","tablenam","tablename()","tag","those","time","time,","time.","time.now())","time.tim","to),","true,","type","type,","u.rol","uint","uniqu","updat","update(),","updatedat","updatedat,","us","user","user'","user)","userid","valu","value,","version","want","whenev","won't","work","write","{","{}","}"],"associations.html":["\"creditcard\")","\"de\"})","\"de\"},","\"languages\"","\"languages\")","\"languages\".\"id\"","\"user_languages\"","\"user_languages\".\"language_id\"","\"user_languages\".\"user_id\"","\"users\"","\"users\".\"id\"","&","(\"user_languages\".\"language_id\"","('111'))","(contain","*","*with","//","////","111","111;","123","123;",":","=","[]customizeaccount","[]email","[]languag","[]profil","[]user","`gorm:\"foreignkey:profileid;associationforeignkey:refer\"`","`gorm:\"foreignkey:profilerefer\"`","`gorm:\"foreignkey:userid;associationforeignkey:refer\"`","`gorm:\"foreignkey:userrefer\"`","`gorm:\"many2many:personaccount;associationforeignkey:idaccount;foreignkey:idperson\"`","`gorm:\"many2many:user_languages;\"`","`gorm:\"polymorphic:owner;\"`","`gorm:\"primary_key:true\"`","`languages`","`profile`,","`profileid`","`user_languages`","`user`","abov","account","append","argument","arguments,","associ","associations,","associations.","back","belong","belongs_to","between","card","cat","check","clear","condit","contain","count","credit_card","creditcard","creditcard,","current","customizeaccount","customizeperson","db.model(&language).related(&users)","db.model(&user).association(\"languages\")","db.model(&user).association(\"languages\").append([]language{languagezh,","db.model(&user).association(\"languages\").append(language{name:","db.model(&user).association(\"languages\").clear()","db.model(&user).association(\"languages\").count()","db.model(&user).association(\"languages\").delete([]language{languagezh,","db.model(&user).association(\"languages\").delete(languagezh,","db.model(&user).association(\"languages\").error","db.model(&user).association(\"languages\").find(&languages)","db.model(&user).association(\"languages\").replace([]language{languagezh,","db.model(&user).association(\"languages\").replace(language{name:","db.model(&user).related(&card)","db.model(&user).related(&card,","db.model(&user).related(&emails)","db.model(&user).related(&languages,","db.model(&user).related(&profile)","delet","differ","dog","easily.","email","emails,","error,","errors.","example,","explicitli","field","file","fill","find","foreign","gorm.model","handl","has_many,","has_one,","helper","id","idaccount","idperson","inner","int","join","key","key)","languag","languageen)","languageen})","languages,","like:","make","mani","many2many,","matched,","mean","method","mode","model","name","name,","need","new","note:","number","omitted,","on","out","ownerid","ownertyp","pass","polymorph","primari","profil","profileid","profileref","queri","record","refer","relat","relationship","relationship.","remov","replac","return","same","select","sourc","source'","source,","specifi","start","string","struct","support","supported,","sure","tabl","thing","those","throw","toy","two","type","uint","us","user","user'","user_id","userid","userref","valid","var","variabl","variable'","with:","won't","{","}"],"crud.html":["\"\",","\"\"}","\"%jin%\").find(&users)","\"%jinzhu%\")","\"%jinzhu%\").delete(email{})","\"%jinzhu%\";","\"22\").find(&users)","\"411111111111\").find(&user)","\"active\").preload(\"orders\",","\"actived\":","\"addresses\"","\"admin\").or(\"rol","\"age\":","\"age\"}).find(&users)","\"bill","\"c\")","\"cancelled\").find(&users)","\"code\")","\"email","\"emails\"","\"en\"},","\"for","\"hello\")","\"hello\",","\"id","\"id\"","\"jinzhu","\"jinzhu\"","\"jinzhu\")","\"jinzhu\").count(&count)","\"jinzhu\").delete()","\"jinzhu\").find(&users)","\"jinzhu\").first(&user)","\"jinzhu\").or(\"nam","\"jinzhu\");","\"jinzhu\",","\"jinzhu\";","\"jinzhu\"}","\"jinzhu\"})","\"jinzhu\"}).assign(user{age:","\"jinzhu\"}).attrs(user{age:","\"jinzhu\"}).first(&user)","\"jinzhu\"}).firstorcreate(&user)","\"jinzhu\"}).firstorinit(&user)","\"jinzhu@example.com\");","\"jinzhu@example.com\"},","\"jinzhu@example.org\").joins(\"join","\"languages\"","\"name","\"non_existing\",","\"non_existing\"}","\"non_existing\"})","\"non_existing\"}).assign(user{age:","\"non_existing\"}).attrs(\"age\",","\"non_existing\"}).attrs(user{age:","\"on","\"option","\"paid\").preload(\"orders.orderitems\").find(&users)","\"price\"","\"products\"","\"quantity\"","\"ship","\"shipped\"})).find(&orders)","\"state","\"string_primary_key\")","\"super_admin\").find(&users)","\"super_admin\").not(\"nam","\"updated_at\"","\"users\"","\"zh\"},","&","&ages)","&names)","'100',","'2'","'2';","'2013","'active';","'admin'","'admin';","'galeone'","'jinzhu","'jinzhu'","'jinzhu'\").or(map[string]interface{}{\"name\":","'jinzhu'\").or(user{name:","'jinzhu';","'non_existing';","'string_primary_key'","'super_admin';","(\"bill","(\"jinzhu\",","(\"name\")","(\"name\",","(\"non_existing\");","(\"non_existing\",","(\"ship","(\"user_id\",\"language_id\")","('cancelled');","('en');","('zh');","(1,2)","(1,2,3);","(1,2,3,4)","(1,2,3,4);","(10,","(111,","(20,","(4,5,6);","(?)\",","(address1)","(count)","(db","(eager","(err","(name)","(name,","(name,billing_address_id,shipping_address_id)","(onli","(optim","(plain","(same","(struct","(user","(user_id,email)","(users)","(users1)","(users2)","*","*db,","*gorm.db","*gorm.db)","*gorm.scope)","*user)","+","...","//","////","0);","0,","01","01',","1","1\").updatecolumn(\"quantity\",","1\");","1\"},","1))","1).find(&users2)","1);","1,","10","10)","100","100))","100).rows()","100).scan(&results)","100)})","1000","1000)","10:23\"","10;","11","11);","111","111,","111;","112,","11}).updates(map[string]interface{}{\"name\":","17","18,","18})","18}).rowsaffect","1;","2\"","2\").find(&users).count(&count)","2\");","2\"}).find(&users)","2',","2';","2);","2,","20","20\").find(&user)","20\").find(&users)","20)","20).delete(&user{})","20).firstorinit(&user)","20);","20;","20}","20})","20}).find(&users)","20}).first(&user)","20}).firstorcreate(&user)","20}).firstorinit(&user)","21,","21:34:10'","22);","22}).find(&users)","23","23)","29","2@example.com\");","2@example@example.com\"},","3).scan(&result)","30}","30}).firstorcreate(&user)","30}).firstorinit(&user)","3;","42).rows()","99,",":=","<>","=","==","=>",">",">=","?","?\",","?\",\"jinzhu\").where(\"ag","?\",20,\"admin\").find(&users)","[]email{","[]int64","[]int{10,","[]language{","[]string","[]string)","[]string{\"jinzhu\",","[]user","`deleted_users`","`false`","`gorm:\"default:'galeone'\"`","`gorm:\"save_associations:false\"`","`map`,","`rowsaffected`","`struct`,","`true`","`update`","`updates`","`user`","abil","abov","active=true;","actived:","actived=false,","add","address","address{address1:","afterupd","ag","age\").find(&users)","age\").where(\"nam","age)","age:","age;","age=100,","age=18","age=18,","age=18;","age=30","also,","amount","amountgreaterthan1000(db","anim","animal.nam","animals(\"age\")","animal{age:","anoth","api,","argument","assgin","assign","associ","associations,","attr","attribut","attribute,","attributes,","automatically!","avoid","back","batch","bcrypt.generatefrompassword(user.password,","befor","beforecr","beforecreate(scop","beforesave(scop","beforesave,","beforeupdate,","begin","belong","below","between","billingaddress:","birthday:","birthday='2016","blank","blank,","call","callback","callback,","cancel","card","carefulli","chain","chainabl","chang","check","coalesce(age,'42')","cod","code)","column","column?","columns,","combin","commit;","compani","companyid","condit","conditions)","config","conflict\").create(&product)","conflict;","connect","count","count(*)","creat","created.","creating/upd","credit","credit_card","credit_cards.user_id","crud:","current","custom","data","databas","database,","database.","date","date,","db.create(&animal)","db.create(&user)","db.delete(&email)","db.delete(&user)","db.delete(email{},","db.find(&user,","db.find(&users)","db.find(&users).pluck(\"age\",","db.find(&users,","db.first(&user)","db.first(&user,","db.firstorcreate(&user,","db.firstorinit(&user,","db.joins(\"join","db.last(&user)","db.limit(10).find(&users1).limit(","db.limit(3).find(&users)","db.model(&product).update(\"price\",","db.model(&product).updatecolumn(\"quantity\",","db.model(&product).updates(map[string]interface{}{\"price\":","db.model(&product).where(\"quant","db.model(&user).omit(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).select(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).set(\"gorm:update_option\",","db.model(&user).update(\"name\",","db.model(&user).updatecolumn(\"name\",","db.model(&user).updatecolumns(user{name:","db.model(&user).updates(map[string]interface{}{\"name\":","db.model(&user).updates(user{name:","db.model(&user).where(\"act","db.model(&user{}).pluck(\"name\",","db.model(&user{}).where(\"nam","db.model(user{}).updates(user{name:","db.newrecord(user)","db.not(\"nam","db.not(\"name\",","db.not([]int64{1,2,3}).first(&user)","db.not([]int64{}).first(&user)","db.not(user{name:","db.offset(10).find(&users1).offset(","db.offset(3).find(&users)","db.order(\"ag","db.order(\"orders.amount","db.preload(\"orders\").find(&users)","db.preload(\"orders\").preload(\"profile\").preload(\"role\").find(&users)","db.preload(\"orders\",","db.preload(\"orders.orderitems\").find(&users)","db.raw(\"select","db.save(&user)","db.scopes(amountgreaterthan1000).where(\"statu","db.scopes(amountgreaterthan1000,","db.scopes(orderstatus([]string{\"paid\",","db.select(\"name,","db.select([]string{\"name\",","db.set(\"gorm:delete_option\",","db.set(\"gorm:insert_option\",","db.set(\"gorm:query_option\",","db.set(\"gorm:save_associations\",","db.table(\"deleted_users\").count(&count)","db.table(\"deleted_users\").createtable(&user{})","db.table(\"deleted_users\").find(&deleted_users)","db.table(\"deleted_users\").pluck(\"name\",","db.table(\"deleted_users\").where(\"nam","db.table(\"orders\").select(\"date(created_at)","db.table(\"users\").select(\"coalesce(age,?)\",","db.table(\"users\").select(\"name,","db.table(\"users\").select(\"users.name,","db.table(\"users\").where(\"id","db.unscoped().delete(&order)","db.unscoped().where(\"ag","db.where(\"ag","db.where(\"amount","db.where(\"created_at","db.where(\"email","db.where(\"nam","db.where(\"pay_mode_sign","db.where(\"rol","db.where(\"st","db.where(\"updated_at","db.where(&user{name:","db.where([]int64{20,","db.where(map[string]interface{}{\"name\":","db.where(user{name:","default","default,","defin","definit","delet","delete,","deleted_at","deleted_at=\"2013","deleted_us","deleted_users;","deletedat","deletedat'","desc","desc\")","desc\").find(&users1).order(\"age\",","desc\").order(\"name\").find(&users)","desc,","desc;","detail","don't","dynam","email","emails.email","emails.email\").joins(\"left","emails.user_id","emails:","ensur","err","error","error)","even","example:","exist","express","extra","fals","false).create(&user)","false).save(&user)","false})","field","field'","field,","fields'","fields,","fields;","find","first","firstorcr","firstorinit","found","func","func(*db)","func(db","given","gorm","gorm.expr(\"pric","gorm.expr(\"quant","gorm.model","gorm:save_associ","greater","group","have","haven't","id","id=10","id=10;","id=111","id=111;","ignor","includ","init","inject","inlin","insert","int","int64","integ","it'","it,","jinzhu';","join","key","key)","key,","languages:","last","lastweek).find(&users)","lastweek,","limit","load","loading)","mani","map","map)","map,","map[string]interface{}","map[string]interface{}{\"age\":","map[string]interface{}{\"name\":","match","method,","model","model'","more","multipl","name","name\").find(&users)","name,","name:","name;","name='hello'","name='hello',","name='jinzhu","need","nest","never","new","nil","non","none","not(nam","not,","note","noth","null;","number","offset","omit","on","oper","option","order","orders.amount","orderstatus(statu","otherwis","overwrit","paid,","paidwithcod(db","paidwithcod).find(&orders)","paidwithcreditcard(db","paidwithcreditcard).find(&orders)","paramet","pass","perform","perman","plain","pluck","preload","price","primari","product","profil","pw)","pw,","quantiti","queri","raw","read","record","record,","refer","regardless","reorder","request","result","retriev","return","role","rows,","rows.next()","run","save","scan","scope","scope.setcolumn(\"encryptedpassword\",","scope.setcolumn(\"id\",","scope.setcolumn,","scopes),","select","select,","set","ship","shippingaddress:","similar","singl","skip","slice","soft","specifi","sql","sql)","sql,","start","state","status)","string","struct","struct,","struct.","sum(amount)","tabl","tag","tag,","them,","this:","those","time","time.now()}","time.tim","timestamp,","today).find(&users)","total","total\").group(\"date(created_at)\").having(\"sum(amount)","total\").group(\"date(created_at)\").rows()","transaction;","true","true).find(&users2)","true).update(\"name\",","type","uint","unfound","unknown)\").delete(&email)","unknown)\").update(\"name,","unknown);","unscop","updaing,","updat","update\").first(&user,","update,","update;","updatecolumn","updatecolumn,","updated_at","updated_at='2013","updatedat","updating,","us","user","user'","user.ag","user.nam","user_id","user_languag","users.id","users.id\").rows()","users.id\").scan(&results)","users.id\").where(\"credit_cards.numb","users;","user{","user{age:","user{id:","user{name:","uuid.new())","valid","valu","value,","values('99');","values,","var","want","warn","without","won't","work","write","zero","{","{email:","{name:","}","}).find(&users)","},"],"callbacks.html":["\"admin\")","(edger","(err","(u","(u.id","*gorm.db)","*gorm.scope)","*user)","//","1000","1000\")","1000)","=",">","`createdat`,","`updatedat`","aftercr","aftercreate()","aftercreate(scop","aftercreate(tx","afterdelet","afterfind","aftersav","afterupd","alreadi","associ","avail","befor","beforecr","beforedelet","beforesav","beforeupd","beforeupdate()","begin","blank","call","callback","callbacks,","chang","changes.","commit","commited.","creat","creating,","current","data","databas","default","defin","delet","deleting,","err","error)","error,","errors.new(\"read","errors.new(\"us","exampl","field","func","futur","gorm","greater","id","insert","load","loading)","made","method","model","need","object","oper","pass","pointer","preload","queri","querying,","reload","return","rollback","run","same","save","save/delet","scope.db().model(u).update(\"role\",","self","sql","stop","struct,","this:","those","timestamp","transact","transaction.","transactions,","tx.model(u).update(\"role\",","u.readonly()","unless","updat","updating,","us","user\")","user'","valu","visibl","want","{","}"],"advanced.html":["!=","\"\\r\\n\",","\"giraffe\"}).error;","\"hello","\"jinzhu\").first(&user).error;","\"jinzhu\").first(&user{})","\"jinzhu\").rows()","\"jinzhu\").select(\"name,","\"lion\"}).error;","&","&age)","&age,","&email)","&user)","'db')","'tx'","(*sql.row)","(*sql.rows,","(?)\",","(use","*db'","*gorm.db","*gorm.db)","*sql.db","*sql.row","...","//","0))","3).scan(&result)",":=","=","?\",","[]int64{11,22,33})","`*sql.db`","`[]error`","`geterrors`,","`gorm:\"primary_key\"`","advanc","ag","age\").row()","age,","begin","below.","builder","built","card","case","check","commit","composit","connect","createanimals(db","credit","custom","databas","db.begin()","db.db()","db.db().ping()","db.db().setmaxidleconns(10)","db.db().setmaxopenconns(100)","db.debug().where(\"nam","db.exec(\"drop","db.exec(\"upd","db.first(&user).limit(10).find(&users).geterrors()","db.logmode(false)","db.logmode(true)","db.model(&user).related(&credit_card).recordnotfound()","db.model(&user{}).where(\"nam","db.raw(\"select","db.scanrows(rows,","db.setlogger(gorm.logger{revel.trace})","db.setlogger(log.new(os.stdout,","db.table(\"users\").where(\"nam","db.where(\"nam","debug","default","default,","defer","detail","disabl","don't","email","email\").rows()","enabl","err","error","error)","exampl","field","flow","found","func","function","gener","gorm","gorm'","handl","handling...","happen","happened,","https://github.com/jinzhu/gorm/blob/master/logger.go","id","int","interfac","iter","key","languagecod","log","logger","logger,","more","multipl","name","name,","nil","note","object","on","onc","oper","operation,","operations,","order","perform","ping","point,","pool","primari","print","product","queri","raw","recordnotfound","refer","result","return","rollback","row","row.scan(&name,","rows,","rows.close()","rows.next()","rows.scan(&name,","run","scan","set","shipped_at=?","show","singl","someth","specif","sql","sql.db","sql.row","string","struct","support,","tabl","time.now(),","transact","transaction,","tx","tx.commit()","tx.create(&animal{name:","tx.create(...)","tx.rollback()","type","us","usag","user","users;\")","var","within","world\").first(&user).recordnotfound()","{","}"],"development.html":["\"_draft\")","\"jinzhu\")","\"user=gorm","*gorm.db","*gorm.scop","*gorm.scope)","*scope)","+","//","1)","20)","30)",":=","=","?\",","`_draft`","`gorm:create`","`newcreatefunction`","abov","afterdelete)","afterquery)","api","api,","append","architectur","avail","base","befor","beforecreate)","beforeupdate)","bridg","call","callback","callbacks,","chain","chainabl","chains,","check","creat","creating,","crud","current","custom","db","db,","db.callback().create().after(\"gorm:create\").register(\"update_created_at\",","db.callback().create().before(\"gorm:create\").after(\"gorm:before_create\").register(\"my_plugin:before_create\",","db.callback().create().before(\"gorm:create\").register(\"update_created_at\",","db.callback().create().register(\"update_created_at\",","db.callback().create().remove(\"gorm:create\")","db.callback().create().replace(\"gorm:create\",","db.callback().delete().after(\"gorm:delete\").register(\"my_plugin:after_delete\",","db.callback().query().after(\"gorm:query\").register(\"my_plugin:after_query\",","db.callback().rowquery().register(\"publish:update_table_name\",","db.callback().update().before(\"gorm:update\").register(\"my_plugin:before_update\",","db.first(&user)","db.where(\"act","db.where(\"ag","db.where(\"nam","dbname=gorm","default","defiend","defin","delet","develop","each","err","even","example,","exist","filter","fulli","func","function","gorm","gorm.open(\"postgres\",","https://godoc.org/github.com/jinzhu/gorm","instanc","it,","itself","like:","more","name","new","newcreatefunction)","nowfunc())","on","oper","operation'","operation.","operations,","order","out","perform","plugin","power","pre","process","queri","querying,","refer","regist","relat","relation.","replac","row","row_queri","rows,","run","scope.hascolumn(\"created\")","scope.search.table(scope.tablename()","scope.setcolumn(\"created\",","somecondit","sslmode=disable\")","start","tabl","type,","updat","updatecreated(scop","updatecreated)","updatetablename(scop","updatetablename)","updating,","us","view","want","write","yetanothercondit","{","}"],"changelog.html":["\"github.com/jinzhu/gorm/dialects/mssql\"","\"github.com/jinzhu/now\"","&image{}}","(","(user",")","*","*gorm.db","*gorm.scope)","*time.tim","*user)","//","0);","0001","01","02",":=","=","==","[]interface{}{&user{},","_","_,","accord","affected,","alert","applic","bcrypt.generatefrompassword(user.password,","befor","beforesave,","beforeupdate(scop","beforeupdate,","below","blank","break","callback","case","chang","change,","check","column","common","convert","correctly.","database'","db","db.unscoped().model(model).where(\"deleted_at","default","delete'","deleted_at","deletedat,","doesn't","driver","drivers,","encryptedpassword","enough","err","error","errrecordnotfound","example:","exclud","exist","field","field'","fix","func","github.com/jinzhu/gorm/dialects/postgr","golint","golint,","good,","gorm","gorm.db","gorm.model,","gorm.open","gorm:\"column:s_k_u\",","h_t_t_p,","handled.","have","hstore","http","http'","http,","import","includ","initi","instead","it'","less","like:","log","logic","look","main()","make","migrat","model","model'","move","mssql","name","name,","necessari","need","new","nil","noth","null","null,","out","overwrit","packag","pw","pw)","pw,","queri","rang","record","recordnotfound","releas","renam","return","s_k_u,","sampl","scope","scope.setcolumn","scope.setcolumn(\"encryptedpassword\",","script:","select","set","sku","soft","special","sql","struct,","sure","tag,","then,","this,","those","time","time,","todbnam","type","ugly,","updat","upper","uri","us","user","user.encryptedpassword","v1.0","valu","var","won't","work,","{","}"]},"length":9},"tokenStore":{"root":{"0":{"0":{"0":{"1":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{}},"docs":{}},"1":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"2":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"1":{"0":{"0":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"}":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"\"":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},")":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},":":{"2":{"3":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"docs":{}},"docs":{}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"1":{"1":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029560810810810812}}}},"2":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.004222972972972973}},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"3":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"docs":{}},"7":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004222972972972973}}},"8":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"development.html":{"ref":"development.html","tf":0.004347826086956522}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"docs":{}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0033783783783783786}}}},"2":{"0":{"0":{"0":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"docs":{}},"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.004347826086956522}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002533783783783784}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.003800675675675676}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}}}}},"1":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},":":{"3":{"4":{"docs":{},":":{"1":{"0":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004222972972972973}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"2":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"5":{"5":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"docs":{}},"9":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},"docs":{},"n":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}}}}}}}}}}}}}}},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}},"3":{"0":{"docs":{},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}},"docs":{},"r":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"4":{"2":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"docs":{},"t":{"docs":{},"h":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"9":{"9":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"docs":{}},"docs":{},"!":{"docs":{},"=":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}},"\"":{"2":{"2":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},"docs":{}},"4":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"\"":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"\"":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},".":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"/":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"=":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0033783783783783786}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"@":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"4":{"3":{"3":{"docs":{},"?":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"=":{"docs":{},"d":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"@":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"8":{"docs":{},"&":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},".":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}},".":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.003800675675675676}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.004347826086956522}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.005067567567567568}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"%":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"%":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"%":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"\\":{"docs":{},"r":{"docs":{},"\\":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"_":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"(":{"1":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"1":{"1":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}},"docs":{}},"docs":{},",":{"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},",":{"3":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},",":{"4":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"2":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"docs":{}},"4":{"docs":{},",":{"5":{"docs":{},",":{"6":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"docs":{}}},"docs":{}}},"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"docs":{}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}}}}}}},"e":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"r":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304}}}},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"h":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0035650623885918}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"d":{"docs":{},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"u":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304}},"s":{"docs":{},"e":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}},"s":{"1":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"\"":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},".":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"'":{"1":{"1":{"1":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"docs":{}},"docs":{}},"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"z":{"docs":{},"h":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}},"?":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"*":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}}}}}},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"/":{"docs":{},"/":{"docs":{"./":{"ref":"./","tf":0.0457516339869281},"database.html":{"ref":"database.html","tf":0.0659025787965616},"models.html":{"ref":"models.html","tf":0.062388591800356503},"associations.html":{"ref":"associations.html","tf":0.038917089678511},"crud.html":{"ref":"crud.html","tf":0.03209459459459459},"callbacks.html":{"ref":"callbacks.html","tf":0.08755760368663594},"advanced.html":{"ref":"advanced.html","tf":0.059782608695652176},"development.html":{"ref":"development.html","tf":0.030434782608695653},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"/":{"docs":{},"/":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.04983108108108108}}}}}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.011461318051575931},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"=":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.008595988538681949},"crud.html":{"ref":"crud.html","tf":0.002533783783783784},"advanced.html":{"ref":"advanced.html","tf":0.024456521739130436},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"=":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.01015228426395939},"crud.html":{"ref":"crud.html","tf":0.03800675675675676},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.021739130434782608},"development.html":{"ref":"development.html","tf":0.034782608695652174},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"=":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"?":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002533783783783784}},"\"":{"docs":{},",":{"2":{"0":{"docs":{},",":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.016469594594594593},"advanced.html":{"ref":"advanced.html","tf":0.021739130434782608},"development.html":{"ref":"development.html","tf":0.017391304347826087}},"\"":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.025787965616045846},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"associations.html":{"ref":"associations.html","tf":10.023688663282572},"crud.html":{"ref":"crud.html","tf":0.0033783783783783786},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},"!":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"d":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.02005730659025788},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"2":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0033783783783783786}},"{":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"docs":{}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":5.002717391304348}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"l":{"docs":{},"i":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"c":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"c":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"t":{"docs":{},"x":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"e":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.007601351351351352}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"=":{"1":{"0":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"docs":{}},"8":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"docs":{}},"3":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"docs":{}},"docs":{}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}},"r":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"d":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"1":{"0":{"0":{"0":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0035650623885918},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}},"c":{"docs":{},"k":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"s":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"w":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"=":{"docs":{},"'":{"2":{"0":{"1":{"6":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.013043478260869565}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866},"callbacks.html":{"ref":"callbacks.html","tf":10.04147465437788},"development.html":{"ref":"development.html","tf":0.08260869565217391},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"s":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0035650623885918},"crud.html":{"ref":"crud.html","tf":0.003800675675675676},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"changelog.html":{"ref":"changelog.html","tf":5.018264840182648}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"s":{"docs":{},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"s":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"o":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"e":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"models.html":{"ref":"models.html","tf":0.0017825311942959}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"o":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"r":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.003800675675675676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.02005730659025788},"models.html":{"ref":"models.html","tf":0.0196078431372549},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}},"?":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"(":{"docs":{},"*":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{},"'":{"4":{"2":{"docs":{},"'":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.014326647564469915},"models.html":{"ref":"models.html","tf":0.0106951871657754},"crud.html":{"ref":"crud.html","tf":0.002533783783783784},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"development.html":{"ref":"development.html","tf":0.030434782608695653}},"e":{"docs":{},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"/":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.008912655971479501}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"/":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"associations.html":{"ref":"associations.html","tf":0.01015228426395939}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"s":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"d":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":2.5004222972972974}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.012477718360071301},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":2.5004222972972974},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":10.008595988538682},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.01358695652173913}},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}},"b":{"docs":{"development.html":{"ref":"development.html","tf":0.017391304347826087},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},".":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},":":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}},"i":{"docs":{},"f":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},".":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"docs":{}},"docs":{}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"1":{"0":{"0":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"development.html":{"ref":"development.html","tf":0.004347826086956522}},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},".":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},".":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},"o":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}},"[":{"docs":{},"]":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"1":{"0":{"0":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"docs":{}},"3":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"docs":{}}}}}},"o":{"docs":{},"g":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{},"{":{"1":{"docs":{},",":{"2":{"docs":{},",":{"3":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"docs":{}},"3":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{},"?":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"development.html":{"ref":"development.html","tf":0.008695652173913044}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"c":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{},"{":{"2":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0046452702702702705}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0106951871657754},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"e":{"docs":{},";":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"i":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.008868243243243243},"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729},"development.html":{"ref":"development.html","tf":0.017391304347826087}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0273972602739726}},"=":{"docs":{},"\"":{"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"u":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"'":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"development.html":{"ref":"development.html","tf":10.004347826086956}}}}}}},"s":{"docs":{},"c":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"o":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.014326647564469915}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.011461318051575931},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.03260869565217391},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.021739130434782608},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"u":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"r":{"docs":{},"a":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029560810810810812}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"e":{"docs":{},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.008695652173913044},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"c":{"docs":{},"h":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.003800675675675676},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},".":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"f":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}},"l":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.03208556149732621},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.0059121621621621625},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"s":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"x":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"n":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0033783783783783786},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.008695652173913044},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"(":{"docs":{},"*":{"docs":{},"d":{"docs":{},"b":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.008912655971479501},"associations.html":{"ref":"associations.html","tf":0.02030456852791878}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":3.333333333333333}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":3.3464052287581696},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"crud.html":{"ref":"crud.html","tf":0.004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.021739130434782608},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.03722504230118443},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"3":{"docs":{},"\"":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"docs":{}}}}}}},"m":{"docs":{},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}},":":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"_":{"docs":{},"k":{"docs":{},"_":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"o":{"docs":{},"d":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"z":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"v":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"s":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"_":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0142602495543672},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.006756756756756757},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"=":{"1":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"1":{"1":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002533783783783784}}}},"docs":{}},"docs":{}},"docs":{}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.034383954154727794},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"n":{"docs":{},"c":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0071790540540540545},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.017191977077363897},"models.html":{"ref":"models.html","tf":0.0071301247771836}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"t":{"6":{"4":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}},"docs":{}},"docs":{"models.html":{"ref":"models.html","tf":0.0142602495543672},"associations.html":{"ref":"associations.html","tf":0.011844331641285956},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"e":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"e":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"t":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0053475935828877},"associations.html":{"ref":"associations.html","tf":0.030456852791878174},"crud.html":{"ref":"crud.html","tf":0.0046452702702702705},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"e":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}},"n":{"docs":{},"u":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0046452702702702705}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"changelog.html":{"ref":"changelog.html","tf":5.004566210045662}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"i":{"docs":{},"c":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}},"o":{"docs":{},"k":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"associations.html":{"ref":"associations.html","tf":0.00676818950930626}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}},"}":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}}}}}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"k":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"(":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"n":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.015228426395939087},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},"y":{"2":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}}}},"c":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"k":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"{":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.008595988538681949},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"s":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.014326647564469915},"models.html":{"ref":"models.html","tf":10.007130124777184},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}},"v":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":0.002533783783783784},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.04634581105169341},"associations.html":{"ref":"associations.html","tf":0.025380710659898477},"crud.html":{"ref":"crud.html","tf":0.014358108108108109},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0228310502283105}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.005067567567567568}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},"=":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.003800675675675676}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"w":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}},"o":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.016042780748663103},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"crud.html":{"ref":"crud.html","tf":0.008868243243243243},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"u":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}},"'":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}},".":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.003800675675675676}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.011461318051575931}},"e":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"s":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"s":{"docs":{},"s":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"i":{"docs":{},"d":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"c":{"docs":{},"k":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"h":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}},"i":{"docs":{},"s":{"docs":{},"m":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"o":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"r":{"docs":{},"e":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},":":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.008023648648648648},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}},"n":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0392156862745098},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"'":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0338409475465313},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.013043478260869565}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"w":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0059121621621621625},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":2.5004222972972974}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.005076142131979695}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},".":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"o":{"docs":{},"v":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.008868243243243243},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0033783783783783786}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002533783783783784},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0046452702702702705},"callbacks.html":{"ref":"callbacks.html","tf":0.02304147465437788},"advanced.html":{"ref":"advanced.html","tf":0.01358695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.02608695652173913}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"u":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.008695652173913044}}},"l":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"a":{"docs":{},"w":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}},"n":{"docs":{},"g":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.02304147465437788},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.013043478260869565}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}},"_":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"a":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"(":{"docs":{},"\"":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"b":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"u":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.006756756756756757},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"i":{"docs":{},"t":{"docs":{},"e":{"3":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"docs":{}}}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"docs":{}},"docs":{}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":3.3398692810457513},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"u":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0285204991087344},"associations.html":{"ref":"associations.html","tf":0.030456852791878174},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.026737967914438502},"associations.html":{"ref":"associations.html","tf":0.04568527918781726},"crud.html":{"ref":"crud.html","tf":0.0059121621621621625},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}}},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"r":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"m":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.030303030303030304},"crud.html":{"ref":"crud.html","tf":0.010135135135135136},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.02956081081081081},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"f":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729}}}}},"s":{"docs":{},"l":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"=":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"p":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"v":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.027649769585253458}},"(":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"=":{"docs":{},"?":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}},"e":{"docs":{},"'":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.011844331641285956},"crud.html":{"ref":"crud.html","tf":0.002533783783783784}}}},"a":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}},"u":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}},"_":{"docs":{},"k":{"docs":{},"_":{"docs":{},"u":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"o":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},")":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"y":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826}}},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"callbacks.html":{"ref":"callbacks.html","tf":0.03686635944700461},"advanced.html":{"ref":"advanced.html","tf":0.016304347826086956}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"docs":{}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.023172905525846704},"associations.html":{"ref":"associations.html","tf":0.047377326565143825},"crud.html":{"ref":"crud.html","tf":0.0033783783783783786},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.03724928366762178},"models.html":{"ref":"models.html","tf":0.0142602495543672},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}}}}}}}},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.012477718360071301},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.012477718360071301},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"e":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"s":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}},"e":{"docs":{},"m":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"n":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"w":{"docs":{},"o":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"x":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"u":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}}}}}}}},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.008912655971479501},"associations.html":{"ref":"associations.html","tf":0.015228426395939087},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002533783783783784}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},")":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.02153716216216216},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"=":{"docs":{},"'":{"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.013043478260869565}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"s":{"docs":{"models.html":{"ref":"models.html","tf":0.017825311942959002},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.005489864864864865},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0228310502283105}},"e":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0106951871657754},"associations.html":{"ref":"associations.html","tf":0.030456852791878174},"crud.html":{"ref":"crud.html","tf":0.032939189189189186},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.01015228426395939}}}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.002533783783783784}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0046452702702702705}},"\"":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"{":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004222972972972973}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029560810810810812}}}}}}}},"\"":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"a":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":5.002717391304348}}}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}},"g":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"r":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"v":{"1":{"docs":{},".":{"0":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{}}},"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"e":{"docs":{},"'":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"l":{"docs":{},"u":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.01097972972972973},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"e":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"s":{"docs":{},"(":{"docs":{},"'":{"9":{"9":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"docs":{}},"docs":{}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"e":{"docs":{},"w":{"docs":{"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}},"w":{"docs":{},"o":{"docs":{},"s":{"docs":{},"m":{"docs":{},"v":{"docs":{},"p":{"docs":{},"@":{"docs":{},"g":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0035650623885918},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}},"r":{"docs":{},"k":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"l":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":2.5004222972972974},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}},"a":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0029560810810810812},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}},"i":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"{":{"docs":{"./":{"ref":"./","tf":0.0196078431372549},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.030303030303030304},"associations.html":{"ref":"associations.html","tf":0.04568527918781726},"crud.html":{"ref":"crud.html","tf":0.0071790540540540545},"callbacks.html":{"ref":"callbacks.html","tf":0.027649769585253458},"advanced.html":{"ref":"advanced.html","tf":0.02717391304347826},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}},"}":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}},"}":{"docs":{"./":{"ref":"./","tf":0.0196078431372549},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.030303030303030304},"associations.html":{"ref":"associations.html","tf":0.04568527918781726},"crud.html":{"ref":"crud.html","tf":0.0071790540540540545},"callbacks.html":{"ref":"callbacks.html","tf":0.027649769585253458},"advanced.html":{"ref":"advanced.html","tf":0.02717391304347826},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}},"&":{"docs":{"associations.html":{"ref":"associations.html","tf":0.01015228426395939},"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"}":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}},"`":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"`":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"i":{"docs":{},"d":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"s":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"s":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},":":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},":":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"2":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},":":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},";":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"2":{"5":{"5":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"docs":{}},"docs":{}},"docs":{}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"1":{"0":{"0":{"docs":{},")":{"docs":{},";":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},":":{"docs":{},"'":{"docs":{},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},"\"":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"`":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"`":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"*":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"`":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"`":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},"_":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}},"'":{"1":{"0":{"0":{"docs":{},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}},"docs":{}},"docs":{}},"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}},"docs":{}},"docs":{}},"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}}},"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0021114864864864866}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016891891891891893}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}}}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"t":{"docs":{},"x":{"docs":{},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"*":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.02660472972972973},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029560810810810812},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.008695652173913044},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029560810810810812},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},"e":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"d":{"docs":{},"b":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"+":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0016891891891891893},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},"[":{"docs":{},"]":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"{":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00338409475465313}},"e":{"docs":{},"{":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},"{":{"1":{"1":{"docs":{},",":{"2":{"2":{"docs":{},",":{"3":{"3":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{},"{":{"1":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}},"docs":{}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}},"{":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008445945945945946}}}}}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892},"advanced.html":{"ref":"advanced.html","tf":0.01358695652173913}}}}},"<":{"docs":{},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.003800675675675676}}}},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.009290540540540541},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"=":{"docs":{"crud.html":{"ref":"crud.html","tf":0.001266891891891892}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004222972972972973}}}}}},"y":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}},"length":1970},"corpusTokens":["!=","\"\",","\"\"}","\"%jin%\").find(&users)","\"%jinzhu%\")","\"%jinzhu%\").delete(email{})","\"%jinzhu%\";","\"/tmp/gorm.db\")","\"22\").find(&users)","\"411111111111\").find(&user)","\"\\r\\n\",","\"_draft\")","\"`","\"active\").preload(\"orders\",","\"actived\":","\"addresses\"","\"admin\"","\"admin\")","\"admin\").or(\"rol","\"admin_users\"","\"age\")","\"age\":","\"age\"}).find(&users)","\"bill","\"c\")","\"cancelled\").find(&users)","\"cities(id)\",","\"code","\"code\")","\"creditcard\")","\"de\"})","\"de\"},","\"email","\"emails\"","\"en\"},","\"engine=innodb\"","\"engine=innodb\").automigrate(&user{})","\"engine=innodb\").createtable(&user{})","\"for","\"giraffe\"}).error;","\"github.com/go","\"github.com/jinzhu/gorm\"","\"github.com/jinzhu/gorm/dialects/mssql\"","\"github.com/jinzhu/gorm/dialects/mysql\"","\"github.com/jinzhu/gorm/dialects/postgres\"","\"github.com/jinzhu/gorm/dialects/sqlite\"","\"github.com/jinzhu/now\"","\"hello","\"hello\")","\"hello\",","\"host=myhost","\"id","\"id\"","\"jinzhu","\"jinzhu\"","\"jinzhu\")","\"jinzhu\").count(&count)","\"jinzhu\").delete()","\"jinzhu\").find(&users)","\"jinzhu\").first(&user)","\"jinzhu\").first(&user).error;","\"jinzhu\").first(&user{})","\"jinzhu\").or(\"nam","\"jinzhu\").rows()","\"jinzhu\").select(\"name,","\"jinzhu\");","\"jinzhu\",","\"jinzhu\";","\"jinzhu\"}","\"jinzhu\"})","\"jinzhu\"}).assign(user{age:","\"jinzhu\"}).attrs(user{age:","\"jinzhu\"}).first(&user)","\"jinzhu\"}).firstorcreate(&user)","\"jinzhu\"}).firstorinit(&user)","\"jinzhu@example.com\");","\"jinzhu@example.com\"},","\"jinzhu@example.org\").joins(\"join","\"l1212\")","\"l1212\",","\"languages\"","\"languages\")","\"languages\".\"id\"","\"lion\"}).error;","\"name","\"name\")","\"name\",","\"non_existing\",","\"non_existing\"}","\"non_existing\"})","\"non_existing\"}).assign(user{age:","\"non_existing\"}).attrs(\"age\",","\"non_existing\"}).attrs(user{age:","\"on","\"option","\"paid\").preload(\"orders.orderitems\").find(&users)","\"prefix_\"","\"price\"","\"products\"","\"products\")","\"profiles\"","\"quantity\"","\"restrict\")","\"restrict\",","\"ship","\"shipped\"})).find(&orders)","\"sqlserver://username:password@localhost:1433?database=dbname\")","\"state","\"string_primary_key\")","\"super_admin\").find(&users)","\"super_admin\").not(\"nam","\"test.db\")","\"text\")","\"updated_at\"","\"user:password@/dbname?charset=utf8&parsetime=true&loc=local\")","\"user=gorm","\"user_languages\"","\"user_languages\".\"language_id\"","\"user_languages\".\"user_id\"","\"users\"","\"users\".\"id\"","\"zh\"},","&","&age)","&age,","&ages)","&email)","&image{}}","&names)","&order{})","&product{},","&user)","'100',","'2'","'2';","'2013","'active';","'admin'","'admin';","'db')","'galeone'","'jinzhu","'jinzhu'","'jinzhu'\").or(map[string]interface{}{\"name\":","'jinzhu'\").or(user{name:","'jinzhu';","'non_existing';","'string_primary_key'","'super_admin';","'tx'","'user_languages'","(","(\"bill","(\"jinzhu\",","(\"name\")","(\"name\",","(\"non_existing\");","(\"non_existing\",","(\"ship","(\"user_id\",\"language_id\")","(\"user_languages\".\"language_id\"","('111'))","('cancelled');","('en');","('zh');","(*sql.row)","(*sql.rows,","(1,2)","(1,2,3);","(1,2,3,4)","(1,2,3,4);","(10,","(111,","(20,","(4,5,6);","(?)\",","(address1)","(almost)","(before/aft","(belong","(contain","(count)","(db","(eager","(edger","(err","(ha","(more","(name)","(name,","(name,billing_address_id,shipping_address_id)","(onli","(optim","(plain","(same","(struct","(u","(u.id","(use","(user","(user)","(user_id,email)","(users)","(users1)","(users2)",")","*","*db'","*db,","*gorm.db","*gorm.db)","*gorm.db,","*gorm.scop","*gorm.scope)","*scope)","*sql.db","*sql.row","*time.tim","*user)","*with","+","...","//","////","0))","0);","0,","0001","01","01',","02","1","1\").updatecolumn(\"quantity\",","1\");","1\"},","1)","1))","1).find(&users2)","1);","1,","10","10)","100","100))","100).rows()","100).scan(&results)","100)})","1000","1000\")","1000)","1000})","10:23\"","10;","11","11);","111","111,","111;","112,","11}).updates(map[string]interface{}{\"name\":","123","123;","17","18,","18})","18}).rowsaffect","1;","1st","2\"","2\").find(&users).count(&count)","2\");","2\"}).find(&users)","2',","2';","2);","2,","20","20\").find(&user)","20\").find(&users)","20)","20).delete(&user{})","20).firstorinit(&user)","20);","2000","2000)","20;","20}","20})","20}).find(&users)","20}).first(&user)","20}).firstorcreate(&user)","20}).firstorinit(&user)","21,","21:34:10'","22);","22}).find(&users)","23","23)","255,","29","2@example.com\");","2@example@example.com\"},","2nd","3).scan(&result)","30)","30}","30}).firstorcreate(&user)","30}).firstorinit(&user)","3;","3rd","42).rows()","4th","99,",":",":=","<>","=","==","=>",">",">=","?","?\",","?\",\"jinzhu\").where(\"ag","?\",20,\"admin\").find(&users)","[]customizeaccount","[]email","[]email{","[]int64","[]int64{11,22,33})","[]interface{}{&user{},","[]int{10,","[]languag","[]language{","[]profil","[]string","[]string)","[]string{\"jinzhu\",","[]user","_","_,","`*sql.db`","`[]error`","`_draft`","`age_of_the_beast`","`age`","`beast_id`","`birthday`","`created_at`","`createdat`","`createdat`,","`day_of_the_beast`","`deleted_users`","`deletedat`","`false`","`geterrors`,","`gorm:\"","`gorm:\"auto_increment\"`","`gorm:\"column:age_of_the_beast\"`","`gorm:\"column:beast_id\"`","`gorm:\"column:day_of_the_beast\"`","`gorm:\"default:'galeone'\"`","`gorm:\"foreignkey:profileid;associationforeignkey:refer\"`","`gorm:\"foreignkey:profilerefer\"`","`gorm:\"foreignkey:userid;associationforeignkey:refer\"`","`gorm:\"foreignkey:userrefer\"`","`gorm:\"index\"`","`gorm:\"index:idx_name_code\"`","`gorm:\"many2many:personaccount;associationforeignkey:idaccount;foreignkey:idperson\"`","`gorm:\"many2many:user_languages;\"`","`gorm:\"not","`gorm:\"polymorphic:owner;\"`","`gorm:\"primary_key\"`","`gorm:\"primary_key:true\"`","`gorm:\"save_associations:false\"`","`gorm:\"size:255\"`","`gorm:\"type:varchar(100);unique\"`","`gorm:\"type:varchar(100);unique_index\"`","`gorm:create`","`id`","`id`,","`idx_user_name_age`","`idx_user_name`","`index`","`languages`","`map`,","`name`","`name`,","`newcreatefunction`","`primary_key`","`products`","`profile`,","`profileid`","`profiles`","`rowsaffected`","`struct`,","`tablename`","`text`","`true`","`type`","`unique_index`","`update`","`updatedat`","`updatedat`,","`updates`","`user","`user_languages`","`user`","`user`'","`user`,","`users`","abil","abov","accord","account","active=true;","actived:","actived=false,","add","address","address1","address2","address{address1:","advanc","affect","affected,","aftercr","aftercreate()","aftercreate(scop","aftercreate(tx","afterdelet","afterdelete)","afterfind","afterquery)","aftersav","afterupd","ag","age\").find(&users)","age\").row()","age\").where(\"nam","age)","age,","age:","age;","age=100,","age=18","age=18,","age=18;","age=30","aim","alert","alreadi","also,","amount","amountgreaterthan1000(db","anim","animal.nam","animalid","animals(\"age\")","animal{age:","anoth","api","api,","append","appli","applic","architectur","argument","arguments,","assgin","assign","associ","associations,","associations.","attr","attribut","attribute,","attributes,","author","auto","automat","automatically!","automigr","avail","avoid","back","base","batch","bcrypt.generatefrompassword(user.password,","befor","beforecr","beforecreate(scop","beforecreate)","beforedelet","beforesav","beforesave(scop","beforesave,","beforeupd","beforeupdate()","beforeupdate(scop","beforeupdate)","beforeupdate,","begin","belong","belongs_to","below","below.","between","billingaddress","billingaddress:","billingaddressid","birthday","birthday:","birthday='2016","blank","blank,","bool","break","bridg","builder","built","call","callback","callback,","callbacks,","cancel","card","carefulli","case","cat","chain","chainabl","chains,","chang","change,","changelog","changes.","check","clear","coalesce(age,'42')","cod","code","code)","column","column'","column?","columns,","combin","come","commit","commit;","commited.","common","compani","companyid","composit","condit","conditions)","config","conflict\").create(&product)","conflict;","connect","contain","contributor","convent","convert","correctly.","count","count(*)","creat","create/save/update/delete/find)","createanimals(db","created.","createdat","createdat,","creating,","creating/upd","credit","credit_card","credit_cards.user_id","creditcard","creditcard'","creditcard,","crud","crud:","current","custom","customizeaccount","customizeperson","data","data.","databas","database\")","database'","database,","database.","databases,","databases.","date","date,","date.","db","db,","db.automigrate(&product{})","db.automigrate(&user{})","db.automigrate(&user{},","db.begin()","db.callback().create().after(\"gorm:create\").register(\"update_created_at\",","db.callback().create().before(\"gorm:create\").after(\"gorm:before_create\").register(\"my_plugin:before_create\",","db.callback().create().before(\"gorm:create\").register(\"update_created_at\",","db.callback().create().register(\"update_created_at\",","db.callback().create().remove(\"gorm:create\")","db.callback().create().replace(\"gorm:create\",","db.callback().delete().after(\"gorm:delete\").register(\"my_plugin:after_delete\",","db.callback().query().after(\"gorm:query\").register(\"my_plugin:after_query\",","db.callback().rowquery().register(\"publish:update_table_name\",","db.callback().update().before(\"gorm:update\").register(\"my_plugin:before_update\",","db.close()","db.create(&animal)","db.create(&product{code:","db.create(&user)","db.createtable(&user{})","db.db()","db.db().ping()","db.db().setmaxidleconns(10)","db.db().setmaxopenconns(100)","db.debug().where(\"nam","db.delete(&email)","db.delete(&product)","db.delete(&user)","db.delete(email{},","db.droptable(\"users\")","db.droptable(&user{})","db.droptableifexists(&user{},","db.exec(\"drop","db.exec(\"upd","db.find(&user,","db.find(&users)","db.find(&users).pluck(\"age\",","db.find(&users,","db.first(&product,","db.first(&user)","db.first(&user).limit(10).find(&users).geterrors()","db.first(&user,","db.firstorcreate(&user,","db.firstorinit(&user,","db.hastable(\"users\")","db.hastable(&user{})","db.joins(\"join","db.last(&user)","db.limit(10).find(&users1).limit(","db.limit(3).find(&users)","db.logmode(false)","db.logmode(true)","db.model(&language).related(&users)","db.model(&product).update(\"price\",","db.model(&product).updatecolumn(\"quantity\",","db.model(&product).updates(map[string]interface{}{\"price\":","db.model(&product).where(\"quant","db.model(&user).association(\"languages\")","db.model(&user).association(\"languages\").append([]language{languagezh,","db.model(&user).association(\"languages\").append(language{name:","db.model(&user).association(\"languages\").clear()","db.model(&user).association(\"languages\").count()","db.model(&user).association(\"languages\").delete([]language{languagezh,","db.model(&user).association(\"languages\").delete(languagezh,","db.model(&user).association(\"languages\").error","db.model(&user).association(\"languages\").find(&languages)","db.model(&user).association(\"languages\").replace([]language{languagezh,","db.model(&user).association(\"languages\").replace(language{name:","db.model(&user).omit(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).related(&card)","db.model(&user).related(&card,","db.model(&user).related(&credit_card).recordnotfound()","db.model(&user).related(&emails)","db.model(&user).related(&languages,","db.model(&user).related(&profile)","db.model(&user).select(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).set(\"gorm:update_option\",","db.model(&user).update(\"createdat\",","db.model(&user).update(\"name\",","db.model(&user).updatecolumn(\"name\",","db.model(&user).updatecolumns(user{name:","db.model(&user).updates(map[string]interface{}{\"name\":","db.model(&user).updates(user{name:","db.model(&user).where(\"act","db.model(&user{}).addforeignkey(\"city_id\",","db.model(&user{}).addindex(\"idx_user_name\",","db.model(&user{}).addindex(\"idx_user_name_age\",","db.model(&user{}).adduniqueindex(\"idx_user_name\",","db.model(&user{}).adduniqueindex(\"idx_user_name_age\",","db.model(&user{}).dropcolumn(\"description\")","db.model(&user{}).modifycolumn(\"description\",","db.model(&user{}).pluck(\"name\",","db.model(&user{}).removeindex(\"idx_user_name\")","db.model(&user{}).where(\"nam","db.model(user{}).updates(user{name:","db.newrecord(user)","db.not(\"nam","db.not(\"name\",","db.not([]int64{1,2,3}).first(&user)","db.not([]int64{}).first(&user)","db.not(user{name:","db.offset(10).find(&users1).offset(","db.offset(3).find(&users)","db.order(\"ag","db.order(\"orders.amount","db.preload(\"orders\").find(&users)","db.preload(\"orders\").preload(\"profile\").preload(\"role\").find(&users)","db.preload(\"orders\",","db.preload(\"orders.orderitems\").find(&users)","db.raw(\"select","db.save(&user)","db.scanrows(rows,","db.scopes(amountgreaterthan1000).where(\"statu","db.scopes(amountgreaterthan1000,","db.scopes(orderstatus([]string{\"paid\",","db.select(\"name,","db.select([]string{\"name\",","db.set(\"gorm:delete_option\",","db.set(\"gorm:insert_option\",","db.set(\"gorm:query_option\",","db.set(\"gorm:save_associations\",","db.set(\"gorm:table_options\",","db.setlogger(gorm.logger{revel.trace})","db.setlogger(log.new(os.stdout,","db.singulartable(true)","db.table(\"deleted_users\").count(&count)","db.table(\"deleted_users\").createtable(&user{})","db.table(\"deleted_users\").find(&deleted_users)","db.table(\"deleted_users\").pluck(\"name\",","db.table(\"deleted_users\").where(\"nam","db.table(\"orders\").select(\"date(created_at)","db.table(\"users\").select(\"coalesce(age,?)\",","db.table(\"users\").select(\"name,","db.table(\"users\").select(\"users.name,","db.table(\"users\").where(\"id","db.table(\"users\").where(\"nam","db.unscoped().delete(&order)","db.unscoped().model(model).where(\"deleted_at","db.unscoped().where(\"ag","db.where(\"act","db.where(\"ag","db.where(\"amount","db.where(\"created_at","db.where(\"email","db.where(\"nam","db.where(\"pay_mode_sign","db.where(\"rol","db.where(\"st","db.where(\"updated_at","db.where(&user{name:","db.where([]int64{20,","db.where(map[string]interface{}{\"name\":","db.where(user{name:","dbname=gorm","debug","default","default,","defaulttablenam","defaulttablename;","defaulttablenamehandl","defer","defiend","defin","definit","delet","delete'","delete,","deleted_at","deleted_at=\"2013","deleted_us","deleted_users;","deletedat","deletedat'","deletedat,","deleting,","desc","desc\")","desc\").find(&users1).order(\"age\",","desc\").order(\"name\").find(&users)","desc,","desc;","descript","description'","destin","detail","develop","dialect","dialect,","differ","disabl","docker","doesn't","dog","don't","driver","driver/mysql\"","drivers,","drop","dropcolumn","dynam","each","easier","easily.","edit","email","email\").rows()","email'","emails,","emails.email","emails.email\").joins(\"left","emails.user_id","emails:","emb","enabl","encryptedpassword","enough","ensur","err","error","error)","error,","errors.","errors.new(\"read","errors.new(\"us","errrecordnotfound","even","exampl","example,","example:","exclud","exist","explicitli","express","extendable,","extra","fals","false).create(&user)","false).save(&user)","false})","fantast","featur","field","field'","field,","fields'","fields,","fields;","file","fill","filter","find","findabl","first","first.","firstorcr","firstorinit","fix","flow","foreign","foreignkey","found","friendli","friendly.","full","fulli","func","func(*db)","func(db","function","futur","gener","get","github.com/jinzhu/gorm","github.com/jinzhu/gorm/dialects/postgr","given","global","go","golang,","golint","golint,","good,","gorm","gorm'","gorm.db","gorm.defaulttablenamehandl","gorm.expr(\"pric","gorm.expr(\"quant","gorm.model","gorm.model,","gorm.open","gorm.open(\"mssql\",","gorm.open(\"mysql\",","gorm.open(\"postgres\",","gorm.open(\"sqlite3\",","gorm:\"column:s_k_u\",","gorm:save_associ","greater","group","h_t_t_p,","handl","handled.","handling...","happen","happened,","has_many,","has_one,","have","haven't","helper","hstore","http","http'","http,","http://github.com/jinzhu","http://twitter.com/zhangjinzhu","https://github.com/jinzhu/gorm/blob/master/dialect.go","https://github.com/jinzhu/gorm/blob/master/logger.go","https://github.com/jinzhu/gorm/graphs/contributor","https://godoc.org/github.com/jinzhu/gorm","id","id,","id=10","id=10;","id=111","id=111;","idaccount","idperson","ignor","ignorem","import","includ","index","indexes,","init","initi","inject","inlin","inner","insert","instal","instanc","instead","int","int64","integ","interfac","it'","it,","iter","itself","jinzhu","jinzhu';","join","keep","key","key)","key,","l1212","languag","languagecod","languageen)","languageen})","languages,","languages:","last","lastweek).find(&users)","lastweek,","less","librari","licens","license.","like:","limit","linux","load","loading)","log","logger","logger,","logic","look","mac,","made","main","main()","make","mani","many,","many2many,","map","map)","map,","map[string]interface{}","map[string]interface{}{\"age\":","map[string]interface{}{\"name\":","match","matched,","mean","method","method,","migrat","miss","mit","mode","model","model'","model,","modifi","modifycolumn","more","move","mssql","multipl","mysql","name","name\").find(&users)","name'","name,","name:","name;","name='hello'","name='hello',","name='jinzhu","necessari","need","nest","never","new","newcreatefunction)","nil","non","none","not(nam","not,","note","note:","noth","nowfunc())","null","null\"`","null,","null;","null;unique\"`","nullabl","num","number","object","offici","offset","omit","omitted,","on","onc","ondelet","one,","onupd","oper","operation'","operation,","operation.","operations,","option","order","orders.amount","orderstatus(statu","orm","otherwis","out","overrid","overview","overwrit","ownerid","ownertyp","packag","paid,","paidwithcod(db","paidwithcod).find(&orders)","paidwithcreditcard(db","paidwithcreditcard).find(&orders)","panic(\"fail","param","paramet","parameter.","parameters)","parsetim","pass","password=mypassword\")","path,","perform","perman","ping","plain","pluck","plugin","plural","point,","pointer","polymorph","polymorphism)","pool","post","postgresql","power","pre","preload","price","price:","primari","print","process","product","product'","profil","profileid","profileref","project","protect","pw","pw)","pw,","quantiti","queri","querying,","quick","rang","raw","read","record","record'","record,","recordnotfound","refer","regardless","regist","relat","relation.","relationship","relationship,","relationship.","releas","reload","rememb","remov","renam","reorder","replac","request","reset","result","retriev","return","role","rollback","row","row.scan(&name,","row_queri","rows,","rows.close()","rows.next()","rows.scan(&name,","rule","run","s_k_u,","same","sampl","save","save()","save/delet","scan","schema","schema,","scope","scope.db().model(u).update(\"role\",","scope.hascolumn(\"created\")","scope.search.table(scope.tablename()","scope.setcolumn","scope.setcolumn(\"created\",","scope.setcolumn(\"encryptedpassword\",","scope.setcolumn(\"id\",","scope.setcolumn,","scopes),","script:","select","select,","self","server","server,","set","ship","shipped_at=?","shippingaddress","shippingaddress:","shippingaddressid","show","similar","singl","size","skip","sku","slice","snake","soft","somecondit","someth","sourc","source'","source,","special","specif","specifi","sql","sql)","sql,","sql.db","sql.nullint64","sql.nullstr","sql.row","sqlite3","sslmode=dis","sslmode=disable\")","start","state","statement","status)","stop","store","string","string)","struct","struct,","struct.","subscrib","suffix","sum(amount)","support","support,","supported,","sure","tabl","table(id)","tablenam","tablename()","tables,","tag","tag,","test","them,","then,","thing","this,","this:","those","throw","time","time,","time.","time.now())","time.now(),","time.now()}","time.tim","time.time,","timestamp","timestamp,","to),","to,","to:","today).find(&users)","todbnam","total","total\").group(\"date(created_at)\").having(\"sum(amount)","total\").group(\"date(created_at)\").rows()","toy","transact","transaction,","transaction.","transaction;","transactions,","true","true).find(&users2)","true).update(\"name\",","true,","two","tx","tx.commit()","tx.create(&animal{name:","tx.create(...)","tx.model(u).update(\"role\",","tx.rollback()","type","type,","u","u.readonly()","u.rol","ugly,","uint","under","unfound","uniqu","unknown)\").delete(&email)","unknown)\").update(\"name,","unknown);","unless","unscop","unsupport","unus","updaing,","updat","update\").first(&user,","update(),","update,","update;","updatecolumn","updatecolumn,","updatecreated(scop","updatecreated)","updated_at","updated_at='2013","updatedat","updatedat,","updatetablename(scop","updatetablename)","updating,","upgrad","upper","uri","us","usag","user","user\")","user'","user)","user.ag","user.encryptedpassword","user.nam","user=gorm","user_id","user_languag","userid","userref","users.id","users.id\").rows()","users.id\").scan(&results)","users.id\").where(\"credit_cards.numb","users;","users;\")","user{","user{age:","user{id:","user{name:","uuid.new())","v1.0","valid","valu","value,","values('99');","values,","var","variabl","variable'","version","view","visibl","want","warn","warning:","whenev","with:","within","without","won't","work","work,","world\").first(&user).recordnotfound()","wosmvp@gmail.com","wrap","write","yetanothercondit","zero","{","{email:","{name:","{}","}","}).find(&users)","},"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Getting Started with GORM","keywords":"","body":"GORM\nThe fantastic ORM library for Golang, aims to be developer friendly.\n\n\n\nOverview\n\nFull-Featured ORM (almost)\nAssociations (Has One, Has Many, Belongs To, Many To Many, Polymorphism)\nCallbacks (Before/After Create/Save/Update/Delete/Find)\nPreloading (eager loading)\nTransactions\nComposite Primary Key\nSQL Builder\nAuto Migrations\nLogger\nExtendable, write Plugins based on GORM callbacks\nEvery feature comes with tests\nDeveloper Friendly\n\nInstall\ngo get -u github.com/jinzhu/gorm\n\nUpgrading To V1.0\n\nCHANGELOG\n\nQuick Start\npackage main\n\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/sqlite\"\n)\n\ntype Product struct {\n  gorm.Model\n  Code string\n  Price uint\n}\n\nfunc main() {\n  db, err := gorm.Open(\"sqlite3\", \"test.db\")\n  if err != nil {\n    panic(\"failed to connect database\")\n  }\n  defer db.Close()\n\n  // Migrate the schema\n  db.AutoMigrate(&Product{})\n\n  // Create\n  db.Create(&Product{Code: \"L1212\", Price: 1000})\n\n  // Read\n  var product Product\n  db.First(&product, 1) // find product with id 1\n  db.First(&product, \"code = ?\", \"L1212\") // find product with code l1212\n\n  // Update - update product's price to 2000\n  db.Model(&product).Update(\"Price\", 2000)\n\n  // Delete - delete product\n  db.Delete(&product)\n}\n\nContributors\nhttps://github.com/jinzhu/gorm/graphs/contributors\nSupporting the project\n\nAuthor\njinzhu\n\nhttp://github.com/jinzhu\nwosmvp@gmail.com\nhttp://twitter.com/zhangjinzhu\n\nLicense\nReleased under the MIT License.\n"},"database.html":{"url":"database.html","title":"Database","keywords":"","body":"Database\n\nConnecting to a database\nIn order to connect to a database, you need to import the database's driver first. For example:\nimport _ \"github.com/go-sql-driver/mysql\"\n\nGORM has wrapped some drivers, for easier to remember the import path, so you could import the mysql driver with\nimport _ \"github.com/jinzhu/gorm/dialects/mysql\"\n// import _ \"github.com/jinzhu/gorm/dialects/postgres\"\n// import _ \"github.com/jinzhu/gorm/dialects/sqlite\"\n// import _ \"github.com/jinzhu/gorm/dialects/mssql\"\n\nMySQL\nNOTE: In order to handle time.Time, you need to include parseTime as a parameter. (More supported parameters)\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/mysql\"\n)\n\nfunc main() {\n  db, err := gorm.Open(\"mysql\", \"user:password@/dbname?charset=utf8&parseTime=True&loc=Local\")\n  defer db.Close()\n}\n\nPostgreSQL\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/postgres\"\n)\n\nfunc main() {\n  db, err := gorm.Open(\"postgres\", \"host=myhost user=gorm dbname=gorm sslmode=disable password=mypassword\")\n  defer db.Close()\n}\n\nSqlite3\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/sqlite\"\n)\n\nfunc main() {\n  db, err := gorm.Open(\"sqlite3\", \"/tmp/gorm.db\")\n  defer db.Close()\n}\n\nSQL Server\nGet started with SQL Server, it can running on your Mac, Linux with Docker\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/mssql\"\n)\n\nfunc main() {\n  db, err = gorm.Open(\"mssql\", \"sqlserver://username:password@localhost:1433?database=dbname\")\n  defer db.Close()\n}\n\nWrite Dialect for unsupported databases\nGORM officially supports the above databases, but you could write a dialect for unsupported databases.\nTo write your own dialect, refer to: https://github.com/jinzhu/gorm/blob/master/dialect.go\nMigration\nAuto Migration\nAutomatically migrate your schema, to keep your schema update to date.\nWARNING: AutoMigrate will ONLY create tables, missing columns and missing indexes, and WON'T change existing column's type or delete unused columns to protect your data.\ndb.AutoMigrate(&User{})\n\ndb.AutoMigrate(&User{}, &Product{}, &Order{})\n\n// Add table suffix when create tables\ndb.Set(\"gorm:table_options\", \"ENGINE=InnoDB\").AutoMigrate(&User{})\n\nHas Table\n// Check model `User`'s table exists or not\ndb.HasTable(&User{})\n\n// Check table `users` exists or not\ndb.HasTable(\"users\")\n\nCreate Table\n// Create table for model `User`\ndb.CreateTable(&User{})\n\n// will append \"ENGINE=InnoDB\" to the SQL statement when creating table `users`\ndb.Set(\"gorm:table_options\", \"ENGINE=InnoDB\").CreateTable(&User{})\n\nDrop table\n// Drop model `User`'s table\ndb.DropTable(&User{})\n\n// Drop table `users\ndb.DropTable(\"users\")\n\n// Drop model's `User`'s table and table `products`\ndb.DropTableIfExists(&User{}, \"products\")\n\nModifyColumn\nModify column's type to given value\n// change column description's data type to `text` for model `User`\ndb.Model(&User{}).ModifyColumn(\"description\", \"text\")\n\nDropColumn\n// Drop column description from model `User`\ndb.Model(&User{}).DropColumn(\"description\")\n\nAdd Foreign Key\n// Add foreign key\n// 1st param : foreignkey field\n// 2nd param : destination table(id)\n// 3rd param : ONDELETE\n// 4th param : ONUPDATE\ndb.Model(&User{}).AddForeignKey(\"city_id\", \"cities(id)\", \"RESTRICT\", \"RESTRICT\")\n\nIndexes\n// Add index for columns `name` with given name `idx_user_name`\ndb.Model(&User{}).AddIndex(\"idx_user_name\", \"name\")\n\n// Add index for columns `name`, `age` with given name `idx_user_name_age`\ndb.Model(&User{}).AddIndex(\"idx_user_name_age\", \"name\", \"age\")\n\n// Add unique index\ndb.Model(&User{}).AddUniqueIndex(\"idx_user_name\", \"name\")\n\n// Add unique index for multiple columns\ndb.Model(&User{}).AddUniqueIndex(\"idx_user_name_age\", \"name\", \"age\")\n\n// Remove index\ndb.Model(&User{}).RemoveIndex(\"idx_user_name\")\n\n"},"models.html":{"url":"models.html","title":"Models","keywords":"","body":"Models\n\nModel Definition\ntype User struct {\n    gorm.Model\n    Birthday     time.Time\n    Age          int\n    Name         string  `gorm:\"size:255\"` // Default size for string is 255, reset it with this tag\n    Num          int     `gorm:\"AUTO_INCREMENT\"`\n\n    CreditCard        CreditCard      // One-To-One relationship (has one - use CreditCard's UserID as foreign key)\n    Emails            []Email         // One-To-Many relationship (has many - use Email's UserID as foreign key)\n\n    BillingAddress    Address         // One-To-One relationship (belongs to - use BillingAddressID as foreign key)\n    BillingAddressID  sql.NullInt64\n\n    ShippingAddress   Address         // One-To-One relationship (belongs to - use ShippingAddressID as foreign key)\n    ShippingAddressID int\n\n    IgnoreMe          int `gorm:\"-\"`   // Ignore this field\n    Languages         []Language `gorm:\"many2many:user_languages;\"` // Many-To-Many relationship, 'user_languages' is join table\n}\n\ntype Email struct {\n    ID      int\n    UserID  int     `gorm:\"index\"` // Foreign key (belongs to), tag `index` will create index for this column\n    Email   string  `gorm:\"type:varchar(100);unique_index\"` // `type` set sql type, `unique_index` will create unique index for this column\n    Subscribed bool\n}\n\ntype Address struct {\n    ID       int\n    Address1 string         `gorm:\"not null;unique\"` // Set field as not nullable and unique\n    Address2 string         `gorm:\"type:varchar(100);unique\"`\n    Post     sql.NullString `gorm:\"not null\"`\n}\n\ntype Language struct {\n    ID   int\n    Name string `gorm:\"index:idx_name_code\"` // Create index with name, and will create combined index if find other fields defined same name\n    Code string `gorm:\"index:idx_name_code\"` // `unique_index` also works\n}\n\ntype CreditCard struct {\n    gorm.Model\n    UserID  uint\n    Number  string\n}\n\nConventions\ngorm.Model struct\nBase model definition gorm.Model, including fields ID, CreatedAt, UpdatedAt, DeletedAt, you could embed it in your model, or only write those fields you want\n// Base Model's definition\ntype Model struct {\n  ID        uint `gorm:\"primary_key\"`\n  CreatedAt time.Time\n  UpdatedAt time.Time\n  DeletedAt *time.Time\n}\n\n// Add fields `ID`, `CreatedAt`, `UpdatedAt`, `DeletedAt`\ntype User struct {\n  gorm.Model\n  Name string\n}\n\n// Only need field `ID`, `CreatedAt`\ntype User struct {\n  ID        uint\n  CreatedAt time.Time\n  Name      string\n}\n\nTable name is the pluralized version of struct name\ntype User struct {} // default table name is `users`\n\n// set User's table name to be `profiles`\nfunc (User) TableName() string {\n  return \"profiles\"\n}\n\nfunc (u User) TableName() string {\n    if u.Role == \"admin\" {\n        return \"admin_users\"\n    } else {\n        return \"users\"\n    }\n}\n\n// Disable table name's pluralization globally\ndb.SingularTable(true) // if set this to true, `User`'s default table name will be `user`, table name setted with `TableName` won't be affected\n\nChange default tablenames\nYou can apply any rules on the default table name by defining the DefaultTableNameHandler\ngorm.DefaultTableNameHandler = func (db *gorm.DB, defaultTableName string) string  {\n    return \"prefix_\" + defaultTableName;\n}\nColumn name is the snake case of field's name\ntype User struct {\n  ID uint             // column name will be `id`\n  Name string         // column name will be `name`\n  Birthday time.Time  // column name will be `birthday`\n  CreatedAt time.Time // column name will be `created_at`\n}\n\n// Overriding Column Name\ntype Animal struct {\n    AnimalId    int64     `gorm:\"column:beast_id\"`         // set column name to `beast_id`\n    Birthday    time.Time `gorm:\"column:day_of_the_beast\"` // set column name to `day_of_the_beast`\n    Age         int64     `gorm:\"column:age_of_the_beast\"` // set column name to `age_of_the_beast`\n}\n\nField ID as primary key\ntype User struct {\n  ID   uint  // field named `ID` will be the default primary field\n  Name string\n}\n\n// Set a field to be primary field with tag `primary_key`\ntype Animal struct {\n  AnimalId int64 `gorm:\"primary_key\"` // set AnimalId to be primary key\n  Name     string\n  Age      int64\n}\n\nField CreatedAt used to store record's created time\nCreate records having CreatedAt field will set it to current time.\ndb.Create(&user) // will set `CreatedAt` to current time\n\n// To change its value, you could use `Update`\ndb.Model(&user).Update(\"CreatedAt\", time.Now())\n\nUse UpdatedAt used to store record's updated time\nSave records having UpdatedAt field will set it to current time.\n// Whenever one or more `user` fields are edited using Save() or Update(), `UpdatedAt` will be set to current time\ndb.Save(&user) // will set `UpdatedAt` to current time\ndb.Model(&user).Update(\"name\", \"jinzhu\") // will set `UpdatedAt` to current time\n\nUse DeletedAt to store record's deleted time if field exists\nDelete records having DeletedAt field, it won't be deleted from database, but only set field DeletedAt's value to current time, and the record is not findable when querying, refer Soft Delete\n"},"associations.html":{"url":"associations.html","title":"Associations","keywords":"","body":"Associations\n\nBelongs To\n// `User` belongs to `Profile`, `ProfileID` is the foreign key\ntype User struct {\n  gorm.Model\n  Profile   Profile\n  ProfileID int\n}\n\ntype Profile struct {\n  gorm.Model\n  Name string\n}\n\ndb.Model(&user).Related(&profile)\n//// SELECT * FROM profiles WHERE id = 111; // 111 is user's foreign key ProfileID\n\nSpecify Foreign Key\ntype Profile struct {\n    gorm.Model\n    Name string\n}\n\ntype User struct {\n    gorm.Model\n    Profile      Profile `gorm:\"ForeignKey:ProfileRefer\"` // use ProfileRefer as foreign key\n    ProfileRefer uint\n}\n\nSpecify Foreign Key & Association Key\ntype Profile struct {\n    gorm.Model\n    Refer int\n    Name  string\n}\n\ntype User struct {\n    gorm.Model\n    Profile   Profile `gorm:\"ForeignKey:ProfileID;AssociationForeignKey:Refer\"`\n    ProfileID int\n}\n\nHas One\n// User has one CreditCard, UserID is the foreign key\ntype User struct {\n    gorm.Model\n    CreditCard   CreditCard\n}\n\ntype CreditCard struct {\n    gorm.Model\n    UserID   uint\n    Number   string\n}\n\nvar card CreditCard\ndb.Model(&user).Related(&card, \"CreditCard\")\n//// SELECT * FROM credit_cards WHERE user_id = 123; // 123 is user's primary key\n// CreditCard is user's field name, it means get user's CreditCard relations and fill it into variable card\n// If the field name is same as the variable's type name, like above example, it could be omitted, like:\ndb.Model(&user).Related(&card)\n\nSpecify Foreign Key\ntype Profile struct {\n  gorm.Model\n  Name      string\n  UserRefer uint\n}\n\ntype User struct {\n  gorm.Model\n  Profile Profile `gorm:\"ForeignKey:UserRefer\"`\n}\n\nSpecify Foreign Key & Association Key\ntype Profile struct {\n  gorm.Model\n  Name   string\n  UserID uint\n}\n\ntype User struct {\n  gorm.Model\n  Refer   uint\n  Profile Profile `gorm:\"ForeignKey:UserID;AssociationForeignKey:Refer\"`\n}\n\nHas Many\n// User has many emails, UserID is the foreign key\ntype User struct {\n    gorm.Model\n    Emails   []Email\n}\n\ntype Email struct {\n    gorm.Model\n    Email   string\n    UserID  uint\n}\n\ndb.Model(&user).Related(&emails)\n//// SELECT * FROM emails WHERE user_id = 111; // 111 is user's primary key\n\nSpecify Foreign Key\ntype Profile struct {\n  gorm.Model\n  Name      string\n  UserRefer uint\n}\n\ntype User struct {\n  gorm.Model\n  Profiles []Profile `gorm:\"ForeignKey:UserRefer\"`\n}\n\nSpecify Foreign Key & Association Key\ntype Profile struct {\n  gorm.Model\n  Name   string\n  UserID uint\n}\n\ntype User struct {\n  gorm.Model\n  Refer   uint\n  Profiles []Profile `gorm:\"ForeignKey:UserID;AssociationForeignKey:Refer\"`\n}\n\nMany To Many\n// User has and belongs to many languages, use `user_languages` as join table\ntype User struct {\n    gorm.Model\n    Languages         []Language `gorm:\"many2many:user_languages;\"`\n}\n\ntype Language struct {\n    gorm.Model\n    Name string\n}\n\ndb.Model(&user).Related(&languages, \"Languages\")\n//// SELECT * FROM \"languages\" INNER JOIN \"user_languages\" ON \"user_languages\".\"language_id\" = \"languages\".\"id\" WHERE \"user_languages\".\"user_id\" = 111\n\n*With back-reference :\n// User has and belongs to many languages, use `user_languages` as join table\n// Make sure the two models are in different files\ntype User struct {\n    gorm.Model\n    Languages         []Language `gorm:\"many2many:user_languages;\"`\n}\n\ntype Language struct {\n    gorm.Model\n    Name string\n    Users               []User     `gorm:\"many2many:user_languages;\"`\n}\n\ndb.Model(&language).Related(&users)\n//// SELECT * FROM \"users\" INNER JOIN \"user_languages\" ON \"user_languages\".\"user_id\" = \"users\".\"id\" WHERE  (\"user_languages\".\"language_id\" IN ('111'))\n\nSpecify Foreign Key & Association Key\ntype CustomizePerson struct {\n  IdPerson string             `gorm:\"primary_key:true\"`\n  Accounts []CustomizeAccount `gorm:\"many2many:PersonAccount;AssociationForeignKey:idAccount;ForeignKey:idPerson\"`\n}\n\ntype CustomizeAccount struct {\n  IdAccount string `gorm:\"primary_key:true\"`\n  Name      string\n}\n\nPolymorphism\nSupports polymorphic has-many and has-one associations.\n  type Cat struct {\n    Id    int\n    Name  string\n    Toy   Toy `gorm:\"polymorphic:Owner;\"`\n  }\n\n  type Dog struct {\n    Id   int\n    Name string\n    Toy  Toy `gorm:\"polymorphic:Owner;\"`\n  }\n\n  type Toy struct {\n    Id        int\n    Name      string\n    OwnerId   int\n    OwnerType string\n  }\n\nNote: polymorphic belongs-to and many-to-many are explicitly NOT supported, and will throw errors.\nAssociation Mode\nAssociation Mode contains some helper methods to handle relationship things easily.\n// Start Association Mode\nvar user User\ndb.Model(&user).Association(\"Languages\")\n// `user` is the source, it need to be a valid record (contains primary key)\n// `Languages` is source's field name for a relationship.\n// If those conditions not matched, will return an error, check it with:\n// db.Model(&user).Association(\"Languages\").Error\n\n\n// Query - Find out all related associations\ndb.Model(&user).Association(\"Languages\").Find(&languages)\n\n\n// Append - Append new associations for many2many, has_many, will replace current association for has_one, belongs_to\ndb.Model(&user).Association(\"Languages\").Append([]Language{languageZH, languageEN})\ndb.Model(&user).Association(\"Languages\").Append(Language{Name: \"DE\"})\n\n\n// Delete - Remove relationship between source & passed arguments, won't delete those arguments\ndb.Model(&user).Association(\"Languages\").Delete([]Language{languageZH, languageEN})\ndb.Model(&user).Association(\"Languages\").Delete(languageZH, languageEN)\n\n\n// Replace - Replace current associations with new one\ndb.Model(&user).Association(\"Languages\").Replace([]Language{languageZH, languageEN})\ndb.Model(&user).Association(\"Languages\").Replace(Language{Name: \"DE\"}, languageEN)\n\n\n// Count - Return the count of current associations\ndb.Model(&user).Association(\"Languages\").Count()\n\n\n// Clear - Remove relationship between source & current associations, won't delete those associations\ndb.Model(&user).Association(\"Languages\").Clear()\n\n"},"crud.html":{"url":"crud.html","title":"CRUD: Reading and Writing Data","keywords":"","body":"CRUD: Reading and Writing Data\n\nCreate\nCreate Record\nuser := User{Name: \"Jinzhu\", Age: 18, Birthday: time.Now()}\n\ndb.NewRecord(user) // => returns `true` as primary key is blank\n\ndb.Create(&user)\n\ndb.NewRecord(user) // => return `false` after `user` created\n\nDefault Values\nYou could define default value in the gorm tag, then the inserting SQL will ignore these fields that has default value and its value is blank, and after insert the record into database, gorm will load those fields's value from database.\ntype Animal struct {\n    ID   int64\n    Name string `gorm:\"default:'galeone'\"`\n    Age  int64\n}\n\nvar animal = Animal{Age: 99, Name: \"\"}\ndb.Create(&animal)\n// INSERT INTO animals(\"age\") values('99');\n// SELECT name from animals WHERE ID=111; // the returning primary key is 111\n// animal.Name => 'galeone'\n\nSetting Primary Key In Callbacks\nIf you want to set primary field's value in BeforeCreate callback, you could use scope.SetColumn, for example:\nfunc (user *User) BeforeCreate(scope *gorm.Scope) error {\n  scope.SetColumn(\"ID\", uuid.New())\n  return nil\n}\n\nExtra Creating option\n// Add extra SQL option for inserting SQL\ndb.Set(\"gorm:insert_option\", \"ON CONFLICT\").Create(&product)\n// INSERT INTO products (name, code) VALUES (\"name\", \"code\") ON CONFLICT;\n\nQuery\n// Get first record, order by primary key\ndb.First(&user)\n//// SELECT * FROM users ORDER BY id LIMIT 1;\n\n// Get last record, order by primary key\ndb.Last(&user)\n//// SELECT * FROM users ORDER BY id DESC LIMIT 1;\n\n// Get all records\ndb.Find(&users)\n//// SELECT * FROM users;\n\n// Get record with primary key (only works for integer primary key)\ndb.First(&user, 10)\n//// SELECT * FROM users WHERE id = 10;\n\nQuery With Where (Plain SQL)\n// Get first matched record\ndb.Where(\"name = ?\", \"jinzhu\").First(&user)\n//// SELECT * FROM users WHERE name = 'jinzhu' limit 1;\n\n// Get all matched records\ndb.Where(\"name = ?\", \"jinzhu\").Find(&users)\n//// SELECT * FROM users WHERE name = 'jinzhu';\n\ndb.Where(\"name <> ?\", \"jinzhu\").Find(&users)\n\n// IN\ndb.Where(\"name in (?)\", []string{\"jinzhu\", \"jinzhu 2\"}).Find(&users)\n\n// LIKE\ndb.Where(\"name LIKE ?\", \"%jin%\").Find(&users)\n\n// AND\ndb.Where(\"name = ? AND age >= ?\", \"jinzhu\", \"22\").Find(&users)\n\n// Time\ndb.Where(\"updated_at > ?\", lastWeek).Find(&users)\n\ndb.Where(\"created_at BETWEEN ? AND ?\", lastWeek, today).Find(&users)\n\nQuery With Where (Struct & Map)\nNOTE When query with struct, GORM will only query with those fields has value\n// Struct\ndb.Where(&User{Name: \"jinzhu\", Age: 20}).First(&user)\n//// SELECT * FROM users WHERE name = \"jinzhu\" AND age = 20 LIMIT 1;\n\n// Map\ndb.Where(map[string]interface{}{\"name\": \"jinzhu\", \"age\": 20}).Find(&users)\n//// SELECT * FROM users WHERE name = \"jinzhu\" AND age = 20;\n\n// Slice of primary keys\ndb.Where([]int64{20, 21, 22}).Find(&users)\n//// SELECT * FROM users WHERE id IN (20, 21, 22);\n\nQuery With Not\ndb.Not(\"name\", \"jinzhu\").First(&user)\n//// SELECT * FROM users WHERE name <> \"jinzhu\" LIMIT 1;\n\n// Not In\ndb.Not(\"name\", []string{\"jinzhu\", \"jinzhu 2\"}).Find(&users)\n//// SELECT * FROM users WHERE name NOT IN (\"jinzhu\", \"jinzhu 2\");\n\n// Not In slice of primary keys\ndb.Not([]int64{1,2,3}).First(&user)\n//// SELECT * FROM users WHERE id NOT IN (1,2,3);\n\ndb.Not([]int64{}).First(&user)\n//// SELECT * FROM users;\n\n// Plain SQL\ndb.Not(\"name = ?\", \"jinzhu\").First(&user)\n//// SELECT * FROM users WHERE NOT(name = \"jinzhu\");\n\n// Struct\ndb.Not(User{Name: \"jinzhu\"}).First(&user)\n//// SELECT * FROM users WHERE name <> \"jinzhu\";\n\nQuery With Inline Condition\nNOTE When query with primary key, you should carefully check the value you passed is a valid primary key, to avoid SQL injection\n// Get by primary key (only works for integer primary key)\ndb.First(&user, 23)\n//// SELECT * FROM users WHERE id = 23 LIMIT 1;\n// Get by primary key if it were a non-integer type\ndb.First(&user, \"id = ?\", \"string_primary_key\")\n//// SELECT * FROM users WHERE id = 'string_primary_key' LIMIT 1;\n\n// Plain SQL\ndb.Find(&user, \"name = ?\", \"jinzhu\")\n//// SELECT * FROM users WHERE name = \"jinzhu\";\n\ndb.Find(&users, \"name <> ? AND age > ?\", \"jinzhu\", 20)\n//// SELECT * FROM users WHERE name <> \"jinzhu\" AND age > 20;\n\n// Struct\ndb.Find(&users, User{Age: 20})\n//// SELECT * FROM users WHERE age = 20;\n\n// Map\ndb.Find(&users, map[string]interface{}{\"age\": 20})\n//// SELECT * FROM users WHERE age = 20;\n\nQuery With Or\ndb.Where(\"role = ?\", \"admin\").Or(\"role = ?\", \"super_admin\").Find(&users)\n//// SELECT * FROM users WHERE role = 'admin' OR role = 'super_admin';\n\n// Struct\ndb.Where(\"name = 'jinzhu'\").Or(User{Name: \"jinzhu 2\"}).Find(&users)\n//// SELECT * FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2';\n\n// Map\ndb.Where(\"name = 'jinzhu'\").Or(map[string]interface{}{\"name\": \"jinzhu 2\"}).Find(&users)\n\nQuery Chains\nGorm has a chainable API, you could use it like this\ndb.Where(\"name <> ?\",\"jinzhu\").Where(\"age >= ? and role <> ?\",20,\"admin\").Find(&users)\n//// SELECT * FROM users WHERE name <> 'jinzhu' AND age >= 20 AND role <> 'admin';\n\ndb.Where(\"role = ?\", \"admin\").Or(\"role = ?\", \"super_admin\").Not(\"name = ?\", \"jinzhu\").Find(&users)\n\nExtra Querying option\n// Add extra SQL option for selecting SQL\ndb.Set(\"gorm:query_option\", \"FOR UPDATE\").First(&user, 10)\n//// SELECT * FROM users WHERE id = 10 FOR UPDATE;\n\nFirstOrInit\nGet first matched record, or initalize a new one with given conditions (only works with struct, map conditions)\n// Unfound\ndb.FirstOrInit(&user, User{Name: \"non_existing\"})\n//// user -> User{Name: \"non_existing\"}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).FirstOrInit(&user)\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 20}\ndb.FirstOrInit(&user, map[string]interface{}{\"name\": \"jinzhu\"})\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 20}\n\nAttrs\nInitalize struct with argument if record haven't been found\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Attrs(User{Age: 20}).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = 'non_existing';\n//// user -> User{Name: \"non_existing\", Age: 20}\n\ndb.Where(User{Name: \"non_existing\"}).Attrs(\"age\", 20).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = 'non_existing';\n//// user -> User{Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).Attrs(User{Age: 30}).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = jinzhu';\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 20}\n\nAssign\nAssign argument to results regardless it is found or not\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Assign(User{Age: 20}).FirstOrInit(&user)\n//// user -> User{Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).Assign(User{Age: 30}).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = jinzhu';\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 30}\n\nFirstOrCreate\nGet first matched record, or create a new one with given conditions (only works with struct, map conditions)\n// Unfound\ndb.FirstOrCreate(&user, User{Name: \"non_existing\"})\n//// INSERT INTO \"users\" (name) VALUES (\"non_existing\");\n//// user -> User{Id: 112, Name: \"non_existing\"}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).FirstOrCreate(&user)\n//// user -> User{Id: 111, Name: \"Jinzhu\"}\n\nAttrs\nAssgin struct with argument if record haven't been found\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Attrs(User{Age: 20}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'non_existing';\n//// INSERT INTO \"users\" (name, age) VALUES (\"non_existing\", 20);\n//// user -> User{Id: 112, Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"jinzhu\"}).Attrs(User{Age: 30}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'jinzhu';\n//// user -> User{Id: 111, Name: \"jinzhu\", Age: 20}\n\nAssign\nAssign it to the record regardless it is found or not, and save back to database.\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Assign(User{Age: 20}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'non_existing';\n//// INSERT INTO \"users\" (name, age) VALUES (\"non_existing\", 20);\n//// user -> User{Id: 112, Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"jinzhu\"}).Assign(User{Age: 30}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'jinzhu';\n//// UPDATE users SET age=30 WHERE id = 111;\n//// user -> User{Id: 111, Name: \"jinzhu\", Age: 30}\n\nSelect\nSpecify fields that you want to retrieve from database, by default, will select all fields;\ndb.Select(\"name, age\").Find(&users)\n//// SELECT name, age FROM users;\n\ndb.Select([]string{\"name\", \"age\"}).Find(&users)\n//// SELECT name, age FROM users;\n\ndb.Table(\"users\").Select(\"COALESCE(age,?)\", 42).Rows()\n//// SELECT COALESCE(age,'42') FROM users;\n\nOrder\nSpecify order when retrieve records from database, set reorder to true to overwrite defined conditions\ndb.Order(\"age desc, name\").Find(&users)\n//// SELECT * FROM users ORDER BY age desc, name;\n\n// Multiple orders\ndb.Order(\"age desc\").Order(\"name\").Find(&users)\n//// SELECT * FROM users ORDER BY age desc, name;\n\n// ReOrder\ndb.Order(\"age desc\").Find(&users1).Order(\"age\", true).Find(&users2)\n//// SELECT * FROM users ORDER BY age desc; (users1)\n//// SELECT * FROM users ORDER BY age; (users2)\n\nLimit\nSpecify the number of records to be retrieved\ndb.Limit(3).Find(&users)\n//// SELECT * FROM users LIMIT 3;\n\n// Cancel limit condition with -1\ndb.Limit(10).Find(&users1).Limit(-1).Find(&users2)\n//// SELECT * FROM users LIMIT 10; (users1)\n//// SELECT * FROM users; (users2)\n\nOffset\nSpecify the number of records to skip before starting to return the records\ndb.Offset(3).Find(&users)\n//// SELECT * FROM users OFFSET 3;\n\n// Cancel offset condition with -1\ndb.Offset(10).Find(&users1).Offset(-1).Find(&users2)\n//// SELECT * FROM users OFFSET 10; (users1)\n//// SELECT * FROM users; (users2)\n\nCount\nGet how many records for a model\ndb.Where(\"name = ?\", \"jinzhu\").Or(\"name = ?\", \"jinzhu 2\").Find(&users).Count(&count)\n//// SELECT * from USERS WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (users)\n//// SELECT count(*) FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (count)\n\ndb.Model(&User{}).Where(\"name = ?\", \"jinzhu\").Count(&count)\n//// SELECT count(*) FROM users WHERE name = 'jinzhu'; (count)\n\ndb.Table(\"deleted_users\").Count(&count)\n//// SELECT count(*) FROM deleted_users;\n\nGroup & Having\nrows, err := db.Table(\"orders\").Select(\"date(created_at) as date, sum(amount) as total\").Group(\"date(created_at)\").Rows()\nfor rows.Next() {\n    ...\n}\n\nrows, err := db.Table(\"orders\").Select(\"date(created_at) as date, sum(amount) as total\").Group(\"date(created_at)\").Having(\"sum(amount) > ?\", 100).Rows()\nfor rows.Next() {\n    ...\n}\n\ntype Result struct {\n    Date  time.Time\n    Total int64\n}\ndb.Table(\"orders\").Select(\"date(created_at) as date, sum(amount) as total\").Group(\"date(created_at)\").Having(\"sum(amount) > ?\", 100).Scan(&results)\n\nJoins\nSpecify Joins conditions\nrows, err := db.Table(\"users\").Select(\"users.name, emails.email\").Joins(\"left join emails on emails.user_id = users.id\").Rows()\nfor rows.Next() {\n    ...\n}\n\ndb.Table(\"users\").Select(\"users.name, emails.email\").Joins(\"left join emails on emails.user_id = users.id\").Scan(&results)\n\n// multiple joins with parameter\ndb.Joins(\"JOIN emails ON emails.user_id = users.id AND emails.email = ?\", \"jinzhu@example.org\").Joins(\"JOIN credit_cards ON credit_cards.user_id = users.id\").Where(\"credit_cards.number = ?\", \"411111111111\").Find(&user)\n\nPluck\nQuery single column from a model as a map, if you want to query multiple columns, you could use Scan\nvar ages []int64\ndb.Find(&users).Pluck(\"age\", &ages)\n\nvar names []string\ndb.Model(&User{}).Pluck(\"name\", &names)\n\ndb.Table(\"deleted_users\").Pluck(\"name\", &names)\n\n// Requesting more than one column? Do it like this:\ndb.Select(\"name, age\").Find(&users)\n\nScan\nScan results into another struct.\ntype Result struct {\n    Name string\n    Age  int\n}\n\nvar result Result\ndb.Table(\"users\").Select(\"name, age\").Where(\"name = ?\", 3).Scan(&result)\n\n// Raw SQL\ndb.Raw(\"SELECT name, age FROM users WHERE name = ?\", 3).Scan(&result)\n\nScopes\nPass current database connection to func(*DB) *DB, which could be used to add conditions dynamically\nfunc AmountGreaterThan1000(db *gorm.DB) *gorm.DB {\n    return db.Where(\"amount > ?\", 1000)\n}\n\nfunc PaidWithCreditCard(db *gorm.DB) *gorm.DB {\n    return db.Where(\"pay_mode_sign = ?\", \"C\")\n}\n\nfunc PaidWithCod(db *gorm.DB) *gorm.DB {\n    return db.Where(\"pay_mode_sign = ?\", \"C\")\n}\n\nfunc OrderStatus(status []string) func (db *gorm.DB) *gorm.DB {\n    return func (db *gorm.DB) *gorm.DB {\n        return db.Scopes(AmountGreaterThan1000).Where(\"status in (?)\", status)\n    }\n}\n\ndb.Scopes(AmountGreaterThan1000, PaidWithCreditCard).Find(&orders)\n// Find all credit card orders and amount greater than 1000\n\ndb.Scopes(AmountGreaterThan1000, PaidWithCod).Find(&orders)\n// Find all COD orders and amount greater than 1000\n\ndb.Scopes(OrderStatus([]string{\"paid\", \"shipped\"})).Find(&orders)\n// Find all paid, shipped orders\n\nSpecifying The Table Name\n// Create `deleted_users` table with struct User's definition\ndb.Table(\"deleted_users\").CreateTable(&User{})\n\nvar deleted_users []User\ndb.Table(\"deleted_users\").Find(&deleted_users)\n//// SELECT * FROM deleted_users;\n\ndb.Table(\"deleted_users\").Where(\"name = ?\", \"jinzhu\").Delete()\n//// DELETE FROM deleted_users WHERE name = 'jinzhu';\n\nPreloading (Eager loading)\ndb.Preload(\"Orders\").Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4);\n\ndb.Preload(\"Orders\", \"state NOT IN (?)\", \"cancelled\").Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4) AND state NOT IN ('cancelled');\n\ndb.Where(\"state = ?\", \"active\").Preload(\"Orders\", \"state NOT IN (?)\", \"cancelled\").Find(&users)\n//// SELECT * FROM users WHERE state = 'active';\n//// SELECT * FROM orders WHERE user_id IN (1,2) AND state NOT IN ('cancelled');\n\ndb.Preload(\"Orders\").Preload(\"Profile\").Preload(\"Role\").Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4); // has many\n//// SELECT * FROM profiles WHERE user_id IN (1,2,3,4); // has one\n//// SELECT * FROM roles WHERE id IN (4,5,6); // belongs to\n\nCustom Preloading SQL\nYou could custom preloading SQL by passing in func(db *gorm.DB) *gorm.DB (same type as the one used for Scopes), for example:\ndb.Preload(\"Orders\", func(db *gorm.DB) *gorm.DB {\n    return db.Order(\"orders.amount DESC\")\n}).Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4) order by orders.amount DESC;\n\nNested Preloading\ndb.Preload(\"Orders.OrderItems\").Find(&users)\ndb.Preload(\"Orders\", \"state = ?\", \"paid\").Preload(\"Orders.OrderItems\").Find(&users)\n\nUpdate\nUpdate All Fields\nSave will include all fields when perform the Updating SQL, even it is not changed\ndb.First(&user)\n\nuser.Name = \"jinzhu 2\"\nuser.Age = 100\ndb.Save(&user)\n\n//// UPDATE users SET name='jinzhu 2', age=100, birthday='2016-01-01', updated_at = '2013-11-17 21:34:10' WHERE id=111;\n\nUpdate Changed Fields\nIf you only want to update changed Fields, you could use Update, Updates\n// Update single attribute if it is changed\ndb.Model(&user).Update(\"name\", \"hello\")\n//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111;\n\n// Update single attribute with combined conditions\ndb.Model(&user).Where(\"active = ?\", true).Update(\"name\", \"hello\")\n//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111 AND active=true;\n\n// Update multiple attributes with `map`, will only update those changed fields\ndb.Model(&user).Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18, \"actived\": false})\n//// UPDATE users SET name='hello', age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;\n\n// Update multiple attributes with `struct`, will only update those changed & non blank fields\ndb.Model(&user).Updates(User{Name: \"hello\", Age: 18})\n//// UPDATE users SET name='hello', age=18, updated_at = '2013-11-17 21:34:10' WHERE id = 111;\n\n// WARNING when update with struct, GORM will only update those fields that with non blank value\n// For below Update, nothing will be updated as \"\", 0, false are blank values of their types\ndb.Model(&user).Updates(User{Name: \"\", Age: 0, Actived: false})\n\nUpdate Selected Fields\nIf you only want to update or ignore some fields when updating, you could use Select, Omit\ndb.Model(&user).Select(\"name\").Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18, \"actived\": false})\n//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111;\n\ndb.Model(&user).Omit(\"name\").Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18, \"actived\": false})\n//// UPDATE users SET age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;\n\nUpdate Changed Fields Without Callbacks\nAbove updating operations will perform the model's BeforeUpdate, AfterUpdate method, update its UpdatedAt timestamp, save its Associations when updaing, if you don't want to call them, you could use UpdateColumn, UpdateColumns\n// Update single attribute, similar with `Update`\ndb.Model(&user).UpdateColumn(\"name\", \"hello\")\n//// UPDATE users SET name='hello' WHERE id = 111;\n\n// Update multiple attributes, similar with `Updates`\ndb.Model(&user).UpdateColumns(User{Name: \"hello\", Age: 18})\n//// UPDATE users SET name='hello', age=18 WHERE id = 111;\n\nBatch Updates\nCallbacks won't run when do batch updates\ndb.Table(\"users\").Where(\"id IN (?)\", []int{10, 11}).Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18})\n//// UPDATE users SET name='hello', age=18 WHERE id IN (10, 11);\n\n// Update with struct only works with none zero values, or use map[string]interface{}\ndb.Model(User{}).Updates(User{Name: \"hello\", Age: 18})\n//// UPDATE users SET name='hello', age=18;\n\n// Get updated records count with `RowsAffected`\ndb.Model(User{}).Updates(User{Name: \"hello\", Age: 18}).RowsAffected\n\nUpdate with SQL Expression\nDB.Model(&product).Update(\"price\", gorm.Expr(\"price * ? + ?\", 2, 100))\n//// UPDATE \"products\" SET \"price\" = price * '2' + '100', \"updated_at\" = '2013-11-17 21:34:10' WHERE \"id\" = '2';\n\nDB.Model(&product).Updates(map[string]interface{}{\"price\": gorm.Expr(\"price * ? + ?\", 2, 100)})\n//// UPDATE \"products\" SET \"price\" = price * '2' + '100', \"updated_at\" = '2013-11-17 21:34:10' WHERE \"id\" = '2';\n\nDB.Model(&product).UpdateColumn(\"quantity\", gorm.Expr(\"quantity - ?\", 1))\n//// UPDATE \"products\" SET \"quantity\" = quantity - 1 WHERE \"id\" = '2';\n\nDB.Model(&product).Where(\"quantity > 1\").UpdateColumn(\"quantity\", gorm.Expr(\"quantity - ?\", 1))\n//// UPDATE \"products\" SET \"quantity\" = quantity - 1 WHERE \"id\" = '2' AND quantity > 1;\n\nChange Updating Values In Callbacks\nIf you want to change updating values in callbacks using BeforeUpdate, BeforeSave, you could use scope.SetColumn, for example:\nfunc (user *User) BeforeSave(scope *gorm.Scope) (err error) {\n  if pw, err := bcrypt.GenerateFromPassword(user.Password, 0); err == nil {\n    scope.SetColumn(\"EncryptedPassword\", pw)\n  }\n}\n\nExtra Updating option\n// Add extra SQL option for updating SQL\ndb.Model(&user).Set(\"gorm:update_option\", \"OPTION (OPTIMIZE FOR UNKNOWN)\").Update(\"name, \"hello\")\n//// UPDATE users SET name='hello', updated_at = '2013-11-17 21:34:10' WHERE id=111 OPTION (OPTIMIZE FOR UNKNOWN);\n\nDelete\nWARNING When delete a record, you need to ensure it's primary field has value, and GORM will use the primary key to delete the record, if primary field's blank, GORM will delete all records for the model\n// Delete an existing record\ndb.Delete(&email)\n//// DELETE from emails where id=10;\n\n// Add extra SQL option for deleting SQL\ndb.Set(\"gorm:delete_option\", \"OPTION (OPTIMIZE FOR UNKNOWN)\").Delete(&email)\n//// DELETE from emails where id=10 OPTION (OPTIMIZE FOR UNKNOWN);\n\nBatch Delete\nDelete all matched records\ndb.Where(\"email LIKE ?\", \"%jinzhu%\").Delete(Email{})\n//// DELETE from emails where email LIKE \"%jinzhu%\";\n\ndb.Delete(Email{}, \"email LIKE ?\", \"%jinzhu%\")\n//// DELETE from emails where email LIKE \"%jinzhu%\";\n\nSoft Delete\nIf model has DeletedAt field, it will get soft delete ability automatically! then it won't be deleted from database permanently when call Delete, but only set field DeletedAt's value to current time\ndb.Delete(&user)\n//// UPDATE users SET deleted_at=\"2013-10-29 10:23\" WHERE id = 111;\n\n// Batch Delete\ndb.Where(\"age = ?\", 20).Delete(&User{})\n//// UPDATE users SET deleted_at=\"2013-10-29 10:23\" WHERE age = 20;\n\n// Soft deleted records will be ignored when query them\ndb.Where(\"age = 20\").Find(&user)\n//// SELECT * FROM users WHERE age = 20 AND deleted_at IS NULL;\n\n// Find soft deleted records with Unscoped\ndb.Unscoped().Where(\"age = 20\").Find(&users)\n//// SELECT * FROM users WHERE age = 20;\n\n// Delete record permanently with Unscoped\ndb.Unscoped().Delete(&order)\n//// DELETE FROM orders WHERE id=10;\n\nAssociations\nBy default when creating/updating a record, GORM will save its associations, if the association has primary key, GORM will call Update to save it, otherwise it will be created.\nuser := User{\n    Name:            \"jinzhu\",\n    BillingAddress:  Address{Address1: \"Billing Address - Address 1\"},\n    ShippingAddress: Address{Address1: \"Shipping Address - Address 1\"},\n    Emails:          []Email{\n                                        {Email: \"jinzhu@example.com\"},\n                                        {Email: \"jinzhu-2@example@example.com\"},\n                   },\n    Languages:       []Language{\n                     {Name: \"ZH\"},\n                     {Name: \"EN\"},\n                   },\n}\n\ndb.Create(&user)\n//// BEGIN TRANSACTION;\n//// INSERT INTO \"addresses\" (address1) VALUES (\"Billing Address - Address 1\");\n//// INSERT INTO \"addresses\" (address1) VALUES (\"Shipping Address - Address 1\");\n//// INSERT INTO \"users\" (name,billing_address_id,shipping_address_id) VALUES (\"jinzhu\", 1, 2);\n//// INSERT INTO \"emails\" (user_id,email) VALUES (111, \"jinzhu@example.com\");\n//// INSERT INTO \"emails\" (user_id,email) VALUES (111, \"jinzhu-2@example.com\");\n//// INSERT INTO \"languages\" (\"name\") VALUES ('ZH');\n//// INSERT INTO user_languages (\"user_id\",\"language_id\") VALUES (111, 1);\n//// INSERT INTO \"languages\" (\"name\") VALUES ('EN');\n//// INSERT INTO user_languages (\"user_id\",\"language_id\") VALUES (111, 2);\n//// COMMIT;\n\ndb.Save(&user)\n\nRefer Associations for more details\nSkip Save Associations when creating/updating\nBy default when saving an record, GORM will save its associations also, you could skip it by set gorm:save_associations to false\ndb.Set(\"gorm:save_associations\", false).Create(&user)\n\ndb.Set(\"gorm:save_associations\", false).Save(&user)\n\nSkip Save Associations by Tag\nYou could use Tag to config your struct to never save an association when creating/updating\ntype User struct {\n  gorm.Model\n  Name      string\n  CompanyID uint\n  Company   Company `gorm:\"save_associations:false\"`\n}\n\ntype Company struct {\n  gorm.Model\n  Name string\n}\n\n"},"callbacks.html":{"url":"callbacks.html","title":"Callbacks","keywords":"","body":"Callbacks\n\nYou could define callback methods to pointer of model struct, it will be called when creating, updating, querying, deleting, if any callback returns an error, gorm will stop future operations and rollback all changes.\nCreating An Object\nAvailable Callbacks for creating\n// begin transaction\nBeforeSave\nBeforeCreate\n// save before associations\n// update timestamp `CreatedAt`, `UpdatedAt`\n// save self\n// reload fields that have default value and its value is blank\n// save after associations\nAfterCreate\nAfterSave\n// commit or rollback transaction\n\nUpdating An Object\nAvailable Callbacks for updating\n// begin transaction\nBeforeSave\nBeforeUpdate\n// save before associations\n// update timestamp `UpdatedAt`\n// save self\n// save after associations\nAfterUpdate\nAfterSave\n// commit or rollback transaction\n\nDeleting An Object\nAvailable Callbacks for deleting\n// begin transaction\nBeforeDelete\n// delete self\nAfterDelete\n// commit or rollback transaction\n\nQuerying An Object\nAvailable Callbacks for querying\n// load data from database\n// Preloading (edger loading)\nAfterFind\n\nCallback Examples\nfunc (u *User) BeforeUpdate() (err error) {\n    if u.readonly() {\n        err = errors.New(\"read only user\")\n    }\n    return\n}\n\n// Rollback the insertion if user's id greater than 1000\nfunc (u *User) AfterCreate() (err error) {\n    if (u.Id > 1000) {\n        err = errors.New(\"user id is already greater than 1000\")\n    }\n    return\n}\n\nSave/Delete operations in gorm are running in transactions, so changes made in that transaction are not visible unless it is commited.\nIf you want to use those changes in your callbacks, you need to run your SQL in the same transaction. So you need to pass current transaction to callbacks like this:\nfunc (u *User) AfterCreate(tx *gorm.DB) (err error) {\n    tx.Model(u).Update(\"role\", \"admin\")\n    return\n}\n\nfunc (u *User) AfterCreate(scope *gorm.Scope) (err error) {\n  scope.DB().Model(u).Update(\"role\", \"admin\")\n    return\n}\n\n"},"advanced.html":{"url":"advanced.html","title":"Advanced Usage","keywords":"","body":"Advanced Usage\n\nError Handling\nAfter perform any operations, if there are any error happened, GORM will set it to *DB's Error field\nif err := db.Where(\"name = ?\", \"jinzhu\").First(&user).Error; err != nil {\n    // error handling...\n}\n\n// If there are more than one error happened, get all of them with `GetErrors`, it returns `[]error`\ndb.First(&user).Limit(10).Find(&users).GetErrors()\n\n// Check if returns RecordNotFound error\ndb.Where(\"name = ?\", \"hello world\").First(&user).RecordNotFound()\n\nif db.Model(&user).Related(&credit_card).RecordNotFound() {\n    // no credit card found handling\n}\n\nTransactions\nTo perform a set of operations within a transaction, the general flow is as below.\n// begin a transaction\ntx := db.Begin()\n\n// do some database operations in the transaction (use 'tx' from this point, not 'db')\ntx.Create(...)\n\n// ...\n\n// rollback the transaction in case of error\ntx.Rollback()\n\n// Or commit the transaction\ntx.Commit()\n\nA Specific Example\nfunc CreateAnimals(db *gorm.DB) err {\n  tx := db.Begin()\n  // Note the use of tx as the database handle once you are within a transaction\n\n  if err := tx.Create(&Animal{Name: \"Giraffe\"}).Error; err != nil {\n     tx.Rollback()\n     return err\n  }\n\n  if err := tx.Create(&Animal{Name: \"Lion\"}).Error; err != nil {\n     tx.Rollback()\n     return err\n  }\n\n  tx.Commit()\n  return nil\n}\n\nSQL Builder\nRun Raw SQL\nRun Raw SQL\ndb.Exec(\"DROP TABLE users;\")\ndb.Exec(\"UPDATE orders SET shipped_at=? WHERE id IN (?)\", time.Now(), []int64{11,22,33})\n\n// Scan\ntype Result struct {\n    Name string\n    Age  int\n}\n\nvar result Result\ndb.Raw(\"SELECT name, age FROM users WHERE name = ?\", 3).Scan(&result)\n\nsql.Row & sql.Rows\nGet query result as *sql.Row or *sql.Rows\nrow := db.Table(\"users\").Where(\"name = ?\", \"jinzhu\").Select(\"name, age\").Row() // (*sql.Row)\nrow.Scan(&name, &age)\n\nrows, err := db.Model(&User{}).Where(\"name = ?\", \"jinzhu\").Select(\"name, age, email\").Rows() // (*sql.Rows, error)\ndefer rows.Close()\nfor rows.Next() {\n    ...\n    rows.Scan(&name, &age, &email)\n    ...\n}\n\n// Raw SQL\nrows, err := db.Raw(\"select name, age, email from users where name = ?\", \"jinzhu\").Rows() // (*sql.Rows, error)\ndefer rows.Close()\nfor rows.Next() {\n    ...\n    rows.Scan(&name, &age, &email)\n    ...\n}\n\nScan sql.Rows In Iteration\nrows, err := db.Model(&User{}).Where(\"name = ?\", \"jinzhu\").Select(\"name, age, email\").Rows() // (*sql.Rows, error)\ndefer rows.Close()\n\nfor rows.Next() {\n  var user User\n  db.ScanRows(rows, &user)\n  // do something\n}\n\nGeneric database interface sql.DB\nGet generic database interface *sql.DB from *gorm.DB connection\n// Get generic database object `*sql.DB` to use its functions\ndb.DB()\n\n// Ping\ndb.DB().Ping()\n\nConnection Pool\ndb.DB().SetMaxIdleConns(10)\ndb.DB().SetMaxOpenConns(100)\n\nComposite Primary Key\nSet multiple fields as primary key to enable composite primary key\ntype Product struct {\n    ID           string `gorm:\"primary_key\"`\n    LanguageCode string `gorm:\"primary_key\"`\n}\n\nLogger\nGorm has built-in logger support, by default, it will print happened errors\n// Enable Logger, show detailed log\ndb.LogMode(true)\n\n// Disable Logger, don't show any log\ndb.LogMode(false)\n\n// Debug a single operation, show detailed log for this operation\ndb.Debug().Where(\"name = ?\", \"jinzhu\").First(&User{})\n\nCustomize Logger\nRefer GORM's default logger for how to customize it https://github.com/jinzhu/gorm/blob/master/logger.go\ndb.SetLogger(gorm.Logger{revel.TRACE})\ndb.SetLogger(log.New(os.Stdout, \"\\r\\n\", 0))\n\n"},"development.html":{"url":"development.html","title":"Development","keywords":"","body":"Development\n\nArchitecture\nGorm use chainable API, *gorm.DB is the bridge of chains, for each chain API, it will create a new relation.\ndb, err := gorm.Open(\"postgres\", \"user=gorm dbname=gorm sslmode=disable\")\n\n// create a new relation\ndb = db.Where(\"name = ?\", \"jinzhu\")\n\n// filter even more\nif SomeCondition {\n    db = db.Where(\"age = ?\", 20)\n} else {\n    db = db.Where(\"age = ?\", 30)\n}\nif YetAnotherCondition {\n    db = db.Where(\"active = ?\", 1)\n}\n\nWhen we start to perform any operations, GORM will create a new *gorm.Scope instance based on current *gorm.DB\n// perform a querying operation\ndb.First(&user)\n\nAnd based on current operation's type, it will call registered creating, updating, querying, deleting or row_querying callbacks to run the operation.\nFor above example, will call querying callbacks, refer Querying Callbacks\nWrite Plugins\nGORM itself is powered by Callbacks, so you could fully customize GORM as you want\nRegister a new callback\nfunc updateCreated(scope *Scope) {\n    if scope.HasColumn(\"Created\") {\n        scope.SetColumn(\"Created\", NowFunc())\n    }\n}\n\ndb.Callback().Create().Register(\"update_created_at\", updateCreated)\n// register a callback for Create process\nDelete an existing callback\ndb.Callback().Create().Remove(\"gorm:create\")\n// delete callback `gorm:create` from Create callbacks\nReplace an existing callback\ndb.Callback().Create().Replace(\"gorm:create\", newCreateFunction)\n// replace callback `gorm:create` with new function `newCreateFunction` for Create process\nRegister callback orders\ndb.Callback().Create().Before(\"gorm:create\").Register(\"update_created_at\", updateCreated)\ndb.Callback().Create().After(\"gorm:create\").Register(\"update_created_at\", updateCreated)\ndb.Callback().Query().After(\"gorm:query\").Register(\"my_plugin:after_query\", afterQuery)\ndb.Callback().Delete().After(\"gorm:delete\").Register(\"my_plugin:after_delete\", afterDelete)\ndb.Callback().Update().Before(\"gorm:update\").Register(\"my_plugin:before_update\", beforeUpdate)\ndb.Callback().Create().Before(\"gorm:create\").After(\"gorm:before_create\").Register(\"my_plugin:before_create\", beforeCreate)\nPre-Defined Callbacks\nGORM has defiend callbacks to perform its CRUD operations, check them out before start write your plugins\n\nCreate callbacks\n\nUpdate callbacks\n\nQuery callbacks\n\nDelete callbacks\n\nRow Query callbacks\n\n\nRow Query callbacks will be called when run Row or Rows, by default there is no registered callbacks for it, you could register a new one like:\nfunc updateTableName(scope *gorm.Scope) {\n  scope.Search.Table(scope.TableName() + \"_draft\") // append `_draft` to table name\n}\n\ndb.Callback().RowQuery().Register(\"publish:update_table_name\", updateTableName)\n\nView https://godoc.org/github.com/jinzhu/gorm to view all available API\n"},"changelog.html":{"url":"changelog.html","title":"Change Log","keywords":"","body":"Change Log\nv1.0\nBreaking Changes\n\ngorm.Open return type *gorm.DB instead of gorm.DB\n\nUpdating will only update changed fields\nMost applications won't be affected, only when you are changing updating values in callbacks like BeforeSave, BeforeUpdate, you should use scope.SetColumn then, for example:\nfunc (user *User) BeforeUpdate(scope *gorm.Scope) {\n  if pw, err := bcrypt.GenerateFromPassword(user.Password, 0); err == nil {\n    scope.SetColumn(\"EncryptedPassword\", pw)\n    // user.EncryptedPassword = pw  // doesn't work, won't including EncryptedPassword field when updating\n  }\n}\n\n\nSoft Delete's default querying scope will only check deleted_at IS NULL\nBefore it will check deleted_at less than 0001-01-02 also to exclude blank time, like:\nSELECT * FROM users WHERE deleted_at IS NULL OR deleted_at \nBut it is not necessary if you are using type *time.Time for your model's DeletedAt, which has been used by gorm.Model, so below SQl is enough\nSELECT * FROM users WHERE deleted_at IS NULL\nSo if you are using gorm.Model, then you are good, nothing need to be change, just make sure all records having blank time for deleted_at set to NULL, sample migrate script:\n\n\nimport (\n    \"github.com/jinzhu/now\"\n)\n\nfunc main() {\n  var models = []interface{}{&User{}, &Image{}}\n  for _, model := range models {\n    db.Unscoped().Model(model).Where(\"deleted_at \n\nNew ToDBName logic\nBefore when GORM convert Struct, Field's name to db name, only those common initialisms from golint like HTTP, URI are special handled.\nSo field HTTP's db name will be http not h_t_t_p, but some other initialisms like SKU that not in golint, it's db name will be s_k_u, which looks ugly, this release fixed this, any upper case initialisms should be converted correctly.\nIf your applications using some upper case initialisms which doesn't exist in golint, you need to overwrite default column name with tag, like gorm:\"column:s_k_u\", or alert your database's column name according to new logic\n\nError RecordNotFound has been renamed to ErrRecordNotFound\n\nmssql driver has been moved out from default drivers, import it with import _ \"github.com/jinzhu/gorm/dialects/mssql\"\n\nHstore has been moved to package github.com/jinzhu/gorm/dialects/postgres\n\n\n"}}}
\ No newline at end of file
+{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["!=","\"code","\"github.com/jinzhu/gorm\"","\"github.com/jinzhu/gorm/dialects/sqlite\"","\"l1212\")","\"l1212\",","\"test.db\")","(","(almost)","(before/aft","(eager","(ha",")","//","1","1)","1000})","2000","2000)",":=","=","?\",","_","aim","associ","author","auto","base","belong","builder","callback","changelog","code","come","composit","connect","contributor","creat","create/save/update/delete/find)","database\")","db,","db.automigrate(&product{})","db.close()","db.create(&product{code:","db.delete(&product)","db.first(&product,","db.model(&product).update(\"price\",","defer","delet","develop","err","extendable,","fantast","featur","find","friendli","friendly.","full","func","get","github.com/jinzhu/gorm","go","golang,","gorm","gorm.model","gorm.open(\"sqlite3\",","http://github.com/jinzhu","http://twitter.com/zhangjinzhu","https://github.com/jinzhu/gorm/graphs/contributor","id","import","instal","jinzhu","key","l1212","librari","licens","license.","loading)","logger","main","main()","mani","many,","migrat","mit","nil","one,","orm","overview","packag","panic(\"fail","plugin","polymorphism)","preload","price","price:","primari","product","product'","project","quick","read","releas","schema","sql","start","string","struct","support","test","to,","transact","type","u","uint","under","updat","upgrad","v1.0","var","wosmvp@gmail.com","write","{","}"],"database.html":["\"/tmp/gorm.db\")","\"age\")","\"cities(id)\",","\"engine=innodb\"","\"engine=innodb\").automigrate(&user{})","\"engine=innodb\").createtable(&user{})","\"github.com/go","\"github.com/jinzhu/gorm\"","\"github.com/jinzhu/gorm/dialects/mssql\"","\"github.com/jinzhu/gorm/dialects/mysql\"","\"github.com/jinzhu/gorm/dialects/postgres\"","\"github.com/jinzhu/gorm/dialects/sqlite\"","\"host=myhost","\"name\")","\"name\",","\"products\")","\"restrict\")","\"restrict\",","\"sqlserver://username:password@localhost:1433?database=dbname\")","\"text\")","\"user:password@/dbname?charset=utf8&parsetime=true&loc=local\")","&order{})","&product{},","(","(more",")","//","1st","2nd","3rd","4th",":",":=","=","_","`age`","`idx_user_name_age`","`idx_user_name`","`name`","`name`,","`products`","`text`","`user`","`user`'","`users`","abov","add","append","auto","automat","automigr","chang","check","column","column'","connect","creat","data","data.","databas","database'","database,","databases,","databases.","date.","db,","db.automigrate(&user{})","db.automigrate(&user{},","db.close()","db.createtable(&user{})","db.droptable(\"users\")","db.droptable(&user{})","db.droptableifexists(&user{},","db.hastable(\"users\")","db.hastable(&user{})","db.model(&user{}).addforeignkey(\"city_id\",","db.model(&user{}).addindex(\"idx_user_name\",","db.model(&user{}).addindex(\"idx_user_name_age\",","db.model(&user{}).adduniqueindex(\"idx_user_name\",","db.model(&user{}).adduniqueindex(\"idx_user_name_age\",","db.model(&user{}).dropcolumn(\"description\")","db.model(&user{}).modifycolumn(\"description\",","db.model(&user{}).removeindex(\"idx_user_name\")","db.set(\"gorm:table_options\",","dbname=gorm","defer","delet","descript","description'","destin","dialect","dialect,","docker","driver","driver/mysql\"","drivers,","drop","dropcolumn","easier","err","example:","exist","field","first.","foreign","foreignkey","func","given","gorm","gorm.open(\"mssql\",","gorm.open(\"mysql\",","gorm.open(\"postgres\",","gorm.open(\"sqlite3\",","handl","https://github.com/jinzhu/gorm/blob/master/dialect.go","import","includ","index","indexes,","keep","key","linux","mac,","main()","migrat","miss","model","model'","modifi","modifycolumn","multipl","mysql","name","need","note:","offici","ondelet","onupd","order","param","parameter.","parameters)","parsetim","password=mypassword\")","path,","postgresql","protect","refer","rememb","remov","run","schema","schema,","server","server,","sql","sqlite3","sslmode=dis","start","statement","suffix","support","tabl","table(id)","tables,","time.time,","to:","type","uniqu","unsupport","unus","updat","user=gorm","valu","warning:","won't","wrap","write","{","}"],"models.html":["\"`","\"admin\"","\"admin_users\"","\"jinzhu\")","\"prefix_\"","\"profiles\"","\"users\"","'user_languages'","(belong","(db","(ha","(u","(user)","*gorm.db,","*time.tim","+","//","255,","=","==","[]email","[]languag","`age_of_the_beast`","`beast_id`","`birthday`","`created_at`","`createdat`","`createdat`,","`day_of_the_beast`","`deletedat`","`gorm:\"","`gorm:\"auto_increment\"`","`gorm:\"column:age_of_the_beast\"`","`gorm:\"column:beast_id\"`","`gorm:\"column:day_of_the_beast\"`","`gorm:\"index\"`","`gorm:\"index:idx_name_code\"`","`gorm:\"many2many:user_languages;\"`","`gorm:\"not","`gorm:\"primary_key\"`","`gorm:\"size:255\"`","`gorm:\"type:varchar(100);unique\"`","`gorm:\"type:varchar(100);unique_index\"`","`id`","`id`,","`index`","`name`","`primary_key`","`profiles`","`tablename`","`type`","`unique_index`","`update`","`updatedat`","`updatedat`,","`user`","`user`'","`user`,","`users`","add","address","address1","address2","affect","ag","anim","animalid","appli","base","billingaddress","billingaddressid","birthday","bool","case","chang","code","column","combin","convent","creat","createdat","createdat,","creditcard","creditcard'","current","database,","db.create(&user)","db.model(&user).update(\"createdat\",","db.model(&user).update(\"name\",","db.save(&user)","db.singulartable(true)","default","defaulttablenam","defaulttablename;","defaulttablenamehandl","defin","definit","delet","deletedat","deletedat'","deletedat,","disabl","edit","email","email'","emb","exist","field","field'","field,","find","findabl","foreign","func","global","gorm.defaulttablenamehandl","gorm.model","gorm.model,","have","id","id,","ignor","ignorem","includ","index","int","int64","join","key","key)","languag","mani","model","model'","model,","more","name","name'","name,","need","null\"`","null;unique\"`","nullabl","num","number","on","overrid","plural","post","primari","querying,","record","record'","refer","relationship","relationship,","reset","return","rule","same","save","save()","set","shippingaddress","shippingaddressid","size","snake","soft","sql","sql.nullint64","sql.nullstr","store","string","string)","struct","subscrib","tabl","tablenam","tablename()","tag","those","time","time,","time.","time.now())","time.tim","to),","true,","type","type,","u.rol","uint","uniqu","updat","update(),","updatedat","updatedat,","us","user","user'","user)","userid","valu","value,","version","want","whenev","won't","work","write","{","{}","}"],"associations.html":["\"creditcard\")","\"de\"})","\"de\"},","\"languages\"","\"languages\")","\"languages\".\"id\"","\"user_languages\"","\"user_languages\".\"language_id\"","\"user_languages\".\"user_id\"","\"users\"","\"users\".\"id\"","&","(\"user_languages\".\"language_id\"","('111'))","(contain","*","*with","//","////","111","111;","123","123;",":","=","[]customizeaccount","[]email","[]languag","[]profil","[]user","`gorm:\"foreignkey:profileid;associationforeignkey:refer\"`","`gorm:\"foreignkey:profilerefer\"`","`gorm:\"foreignkey:userid;associationforeignkey:refer\"`","`gorm:\"foreignkey:userrefer\"`","`gorm:\"many2many:personaccount;associationforeignkey:idaccount;foreignkey:idperson\"`","`gorm:\"many2many:user_languages;\"`","`gorm:\"polymorphic:owner;\"`","`gorm:\"primary_key:true\"`","`languages`","`profile`,","`profileid`","`user_languages`","`user`","abov","account","append","argument","arguments,","associ","associations,","associations.","back","belong","belongs_to","between","card","cat","check","clear","condit","contain","count","credit_card","creditcard","creditcard,","current","customizeaccount","customizeperson","db.model(&language).related(&users)","db.model(&user).association(\"languages\")","db.model(&user).association(\"languages\").append([]language{languagezh,","db.model(&user).association(\"languages\").append(language{name:","db.model(&user).association(\"languages\").clear()","db.model(&user).association(\"languages\").count()","db.model(&user).association(\"languages\").delete([]language{languagezh,","db.model(&user).association(\"languages\").delete(languagezh,","db.model(&user).association(\"languages\").error","db.model(&user).association(\"languages\").find(&languages)","db.model(&user).association(\"languages\").replace([]language{languagezh,","db.model(&user).association(\"languages\").replace(language{name:","db.model(&user).related(&card)","db.model(&user).related(&card,","db.model(&user).related(&emails)","db.model(&user).related(&languages,","db.model(&user).related(&profile)","delet","differ","dog","easily.","email","emails,","error,","errors.","example,","explicitli","field","file","fill","find","foreign","gorm.model","handl","has_many,","has_one,","helper","id","idaccount","idperson","inner","int","join","key","key)","languag","languageen)","languageen})","languages,","like:","make","mani","many2many,","matched,","mean","method","mode","model","name","name,","need","new","note:","number","omitted,","on","out","ownerid","ownertyp","pass","polymorph","primari","profil","profileid","profileref","queri","record","refer","relat","relationship","relationship.","remov","replac","return","same","select","sourc","source'","source,","specifi","start","string","struct","support","supported,","sure","tabl","thing","those","throw","toy","two","type","uint","us","user","user'","user_id","userid","userref","valid","var","variabl","variable'","with:","won't","{","}"],"crud.html":["\"\",","\"\"}","\"%jin%\").find(&users)","\"%jinzhu%\")","\"%jinzhu%\").delete(email{})","\"%jinzhu%\";","\"22\").find(&users)","\"411111111111\").find(&user)","\"active\").preload(\"orders\",","\"actived\":","\"addresses\"","\"admin\").or(\"rol","\"age\":","\"age\"}).find(&users)","\"bill","\"c\")","\"cancelled\").find(&users)","\"code\")","\"email","\"emails\"","\"en\"},","\"for","\"hello\")","\"hello\",","\"id","\"id\"","\"jinzhu","\"jinzhu\"","\"jinzhu\")","\"jinzhu\").count(&count)","\"jinzhu\").delete()","\"jinzhu\").find(&users)","\"jinzhu\").first(&user)","\"jinzhu\").or(\"nam","\"jinzhu\");","\"jinzhu\",","\"jinzhu\";","\"jinzhu\"}","\"jinzhu\"})","\"jinzhu\"}).assign(user{age:","\"jinzhu\"}).attrs(user{age:","\"jinzhu\"}).first(&user)","\"jinzhu\"}).firstorcreate(&user)","\"jinzhu\"}).firstorinit(&user)","\"jinzhu@example.com\");","\"jinzhu@example.com\"},","\"jinzhu@example.org\").joins(\"join","\"languages\"","\"name","\"non_existing\",","\"non_existing\"}","\"non_existing\"})","\"non_existing\"}).assign(user{age:","\"non_existing\"}).attrs(\"age\",","\"non_existing\"}).attrs(user{age:","\"on","\"option","\"orders\"","\"orders\".\"deleted_at\"","\"paid\").preload(\"orders.orderitems\").find(&users)","\"paid\").queryexpr()).find(&orders)","\"price\"","\"products\"","\"quantity\"","\"ship","\"shipped\"})).find(&orders)","\"state","\"string_primary_key\")","\"super_admin\").find(&users)","\"super_admin\").not(\"nam","\"updated_at\"","\"users\"","\"zh\"},","&","&ages)","&names)","'100',","'2'","'2';","'2013","'active';","'admin'","'admin';","'galeone'","'jinzhu","'jinzhu'","'jinzhu'\").or(map[string]interface{}{\"name\":","'jinzhu'\").or(user{name:","'jinzhu';","'non_existing';","'paid')));","'string_primary_key'","'super_admin';","(\"bill","(\"jinzhu\",","(\"name\")","(\"name\",","(\"non_existing\");","(\"non_existing\",","(\"ship","(\"user_id\",\"language_id\")","('cancelled');","('en');","('zh');","(1,2)","(1,2,3);","(1,2,3,4)","(1,2,3,4);","(10,","(111,","(20,","(4,5,6);","(?)\",","(address1)","(amount","(count)","(db","(eager","(err","(name)","(name,","(name,billing_address_id,shipping_address_id)","(onli","(optim","(plain","(same","(select","(state","(struct","(user","(user_id,email)","(users)","(users1)","(users2)","*","*db,","*gorm.db","*gorm.db)","*gorm.scope)","*user)","+","...","//","////","0);","0,","01","01',","1","1\").updatecolumn(\"quantity\",","1\");","1\"},","1))","1).find(&users2)","1);","1,","10","10)","100","100))","100).rows()","100).scan(&results)","100)})","1000","1000)","10:23\"","10;","11","11);","111","111,","111;","112,","11}).updates(map[string]interface{}{\"name\":","17","18,","18})","18}).rowsaffect","1;","2\"","2\").find(&users).count(&count)","2\");","2\"}).find(&users)","2',","2';","2);","2,","20","20\").find(&user)","20\").find(&users)","20)","20).delete(&user{})","20).firstorinit(&user)","20);","20;","20}","20})","20}).find(&users)","20}).first(&user)","20}).firstorcreate(&user)","20}).firstorinit(&user)","21,","21:34:10'","22);","22}).find(&users)","23","23)","29","2@example.com\");","2@example@example.com\"},","3).scan(&result)","30}","30}).firstorcreate(&user)","30}).firstorinit(&user)","3;","42).rows()","99,",":=","<>","=","==","=>",">",">=","?","?\",","?\",\"jinzhu\").where(\"ag","?\",20,\"admin\").find(&users)","[]email{","[]int64","[]int{10,","[]language{","[]string","[]string)","[]string{\"jinzhu\",","[]user","`deleted_users`","`false`","`gorm:\"default:'galeone'\"`","`gorm:\"save_associations:false\"`","`map`,","`rowsaffected`","`struct`,","`true`","`update`","`updates`","`user`","abil","abov","active=true;","actived:","actived=false,","add","address","address{address1:","afterupd","ag","age\").find(&users)","age\").where(\"nam","age)","age:","age;","age=100,","age=18","age=18,","age=18;","age=30","also,","amount","amountgreaterthan1000(db","anim","animal.nam","animals(\"age\")","animal{age:","anoth","api,","argument","assgin","assign","associ","associations,","attr","attribut","attribute,","attributes,","automatically!","avg(amount)","avoid","back","batch","bcrypt.generatefrompassword(user.password,","befor","beforecr","beforecreate(scop","beforesave(scop","beforesave,","beforeupdate,","begin","belong","below","between","billingaddress:","birthday:","birthday='2016","blank","blank,","call","callback","callback,","cancel","card","carefulli","chain","chainabl","chang","check","coalesce(age,'42')","cod","code)","column","column?","columns,","combin","commit;","compani","companyid","condit","conditions)","config","conflict\").create(&product)","conflict;","connect","count","count(*)","creat","created.","creating/upd","credit","credit_card","credit_cards.user_id","crud:","current","custom","data","databas","database,","database.","date","date,","db.create(&animal)","db.create(&user)","db.delete(&email)","db.delete(&user)","db.delete(email{},","db.find(&user,","db.find(&users)","db.find(&users).pluck(\"age\",","db.find(&users,","db.first(&user)","db.first(&user,","db.firstorcreate(&user,","db.firstorinit(&user,","db.joins(\"join","db.last(&user)","db.limit(10).find(&users1).limit(","db.limit(3).find(&users)","db.model(&product).update(\"price\",","db.model(&product).updatecolumn(\"quantity\",","db.model(&product).updates(map[string]interface{}{\"price\":","db.model(&product).where(\"quant","db.model(&user).omit(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).select(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).set(\"gorm:update_option\",","db.model(&user).update(\"name\",","db.model(&user).updatecolumn(\"name\",","db.model(&user).updatecolumns(user{name:","db.model(&user).updates(map[string]interface{}{\"name\":","db.model(&user).updates(user{name:","db.model(&user).where(\"act","db.model(&user{}).pluck(\"name\",","db.model(&user{}).where(\"nam","db.model(user{}).updates(user{name:","db.newrecord(user)","db.not(\"nam","db.not(\"name\",","db.not([]int64{1,2,3}).first(&user)","db.not([]int64{}).first(&user)","db.not(user{name:","db.offset(10).find(&users1).offset(","db.offset(3).find(&users)","db.order(\"ag","db.order(\"orders.amount","db.preload(\"orders\").find(&users)","db.preload(\"orders\").preload(\"profile\").preload(\"role\").find(&users)","db.preload(\"orders\",","db.preload(\"orders.orderitems\").find(&users)","db.raw(\"select","db.save(&user)","db.scopes(amountgreaterthan1000).where(\"statu","db.scopes(amountgreaterthan1000,","db.scopes(orderstatus([]string{\"paid\",","db.select(\"name,","db.select([]string{\"name\",","db.set(\"gorm:delete_option\",","db.set(\"gorm:insert_option\",","db.set(\"gorm:query_option\",","db.set(\"gorm:save_associations\",","db.table(\"deleted_users\").count(&count)","db.table(\"deleted_users\").createtable(&user{})","db.table(\"deleted_users\").find(&deleted_users)","db.table(\"deleted_users\").pluck(\"name\",","db.table(\"deleted_users\").where(\"nam","db.table(\"orders\").select(\"avg(amount)\").where(\"st","db.table(\"orders\").select(\"date(created_at)","db.table(\"users\").select(\"coalesce(age,?)\",","db.table(\"users\").select(\"name,","db.table(\"users\").select(\"users.name,","db.table(\"users\").where(\"id","db.unscoped().delete(&order)","db.unscoped().where(\"ag","db.where(\"ag","db.where(\"amount","db.where(\"created_at","db.where(\"email","db.where(\"nam","db.where(\"pay_mode_sign","db.where(\"rol","db.where(\"st","db.where(\"updated_at","db.where(&user{name:","db.where([]int64{20,","db.where(map[string]interface{}{\"name\":","db.where(user{name:","default","default,","defin","definit","delet","delete,","deleted_at","deleted_at=\"2013","deleted_us","deleted_users;","deletedat","deletedat'","desc","desc\")","desc\").find(&users1).order(\"age\",","desc\").order(\"name\").find(&users)","desc,","desc;","detail","don't","dynam","email","emails.email","emails.email\").joins(\"left","emails.user_id","emails:","ensur","err","error","error)","even","example:","exist","express","extra","fals","false).create(&user)","false).save(&user)","false})","field","field'","field,","fields'","fields,","fields;","find","first","firstorcr","firstorinit","found","func","func(*db)","func(db","given","gorm","gorm.expr(\"pric","gorm.expr(\"quant","gorm.model","gorm:save_associ","greater","group","have","haven't","id","id=10","id=10;","id=111","id=111;","ignor","includ","init","inject","inlin","insert","int","int64","integ","it'","it,","jinzhu';","join","key","key)","key,","languages:","last","lastweek).find(&users)","lastweek,","limit","load","loading)","mani","map","map)","map,","map[string]interface{}","map[string]interface{}{\"age\":","map[string]interface{}{\"name\":","match","method,","model","model'","more","multipl","name","name\").find(&users)","name,","name:","name;","name='hello'","name='hello',","name='jinzhu","need","nest","never","new","nil","non","none","not(nam","not,","note","noth","null","null;","number","offset","omit","on","oper","option","order","orders.amount","orderstatus(statu","otherwis","overwrit","paid,","paidwithcod(db","paidwithcod).find(&orders)","paidwithcreditcard(db","paidwithcreditcard).find(&orders)","paramet","pass","perform","perman","plain","pluck","preload","price","primari","product","profil","pw)","pw,","quantiti","queri","raw","read","record","record,","refer","regardless","reorder","request","result","retriev","return","role","rows,","rows.next()","run","save","scan","scope","scope.setcolumn(\"encryptedpassword\",","scope.setcolumn(\"id\",","scope.setcolumn,","scopes),","select","select,","set","ship","shippingaddress:","similar","singl","skip","slice","soft","specifi","sql","sql)","sql,","start","state","status)","string","struct","struct,","struct.","subqueri","sum(amount)","tabl","tag","tag,","them,","this:","those","time","time.now()}","time.tim","timestamp,","today).find(&users)","total","total\").group(\"date(created_at)\").having(\"sum(amount)","total\").group(\"date(created_at)\").rows()","transaction;","true","true).find(&users2)","true).update(\"name\",","type","uint","unfound","unknown)\").delete(&email)","unknown)\").update(\"name,","unknown);","unscop","updaing,","updat","update\").first(&user,","update,","update;","updatecolumn","updatecolumn,","updated_at","updated_at='2013","updatedat","updating,","us","user","user'","user.ag","user.nam","user_id","user_languag","users.id","users.id\").rows()","users.id\").scan(&results)","users.id\").where(\"credit_cards.numb","users;","user{","user{age:","user{id:","user{name:","uuid.new())","valid","valu","value,","values('99');","values,","var","want","warn","without","won't","work","write","zero","{","{email:","{name:","}","}).find(&users)","},"],"callbacks.html":["\"admin\")","(edger","(err","(u","(u.id","*gorm.db)","*gorm.scope)","*user)","//","1000","1000\")","1000)","=",">","`createdat`,","`updatedat`","aftercr","aftercreate()","aftercreate(scop","aftercreate(tx","afterdelet","afterfind","aftersav","afterupd","alreadi","associ","avail","befor","beforecr","beforedelet","beforesav","beforeupd","beforeupdate()","begin","blank","call","callback","callbacks,","chang","changes.","commit","commited.","creat","creating,","current","data","databas","default","defin","delet","deleting,","err","error)","error,","errors.new(\"read","errors.new(\"us","exampl","field","func","futur","gorm","greater","id","insert","load","loading)","made","method","model","need","object","oper","pass","pointer","preload","queri","querying,","reload","return","rollback","run","same","save","save/delet","scope.db().model(u).update(\"role\",","self","sql","stop","struct,","this:","those","timestamp","transact","transaction.","transactions,","tx.model(u).update(\"role\",","u.readonly()","unless","updat","updating,","us","user\")","user'","valu","visibl","want","{","}"],"advanced.html":["!=","\"\\r\\n\",","\"giraffe\"}).error;","\"hello","\"jinzhu\").first(&user).error;","\"jinzhu\").first(&user{})","\"jinzhu\").rows()","\"jinzhu\").select(\"name,","\"lion\"}).error;","&","&age)","&age,","&email)","&user)","'db')","'tx'","(*sql.row)","(*sql.rows,","(?)\",","(use","*db'","*gorm.db","*gorm.db)","*sql.db","*sql.row","...","//","0))","3).scan(&result)",":=","=","?\",","[]int64{11,22,33})","`*sql.db`","`[]error`","`geterrors`,","`gorm:\"primary_key\"`","advanc","ag","age\").row()","age,","begin","below.","builder","built","card","case","check","commit","composit","connect","createanimals(db","credit","custom","databas","db.begin()","db.db()","db.db().ping()","db.db().setmaxidleconns(10)","db.db().setmaxopenconns(100)","db.debug().where(\"nam","db.exec(\"drop","db.exec(\"upd","db.first(&user).limit(10).find(&users).geterrors()","db.logmode(false)","db.logmode(true)","db.model(&user).related(&credit_card).recordnotfound()","db.model(&user{}).where(\"nam","db.raw(\"select","db.scanrows(rows,","db.setlogger(gorm.logger{revel.trace})","db.setlogger(log.new(os.stdout,","db.table(\"users\").where(\"nam","db.where(\"nam","debug","default","default,","defer","detail","disabl","don't","email","email\").rows()","enabl","err","error","error)","exampl","field","flow","found","func","function","gener","gorm","gorm'","handl","handling...","happen","happened,","https://github.com/jinzhu/gorm/blob/master/logger.go","id","int","interfac","iter","key","languagecod","log","logger","logger,","more","multipl","name","name,","nil","note","object","on","onc","oper","operation,","operations,","order","perform","ping","point,","pool","primari","print","product","queri","raw","recordnotfound","refer","result","return","rollback","row","row.scan(&name,","rows,","rows.close()","rows.next()","rows.scan(&name,","run","scan","set","shipped_at=?","show","singl","someth","specif","sql","sql.db","sql.row","string","struct","support,","tabl","time.now(),","transact","transaction,","tx","tx.commit()","tx.create(&animal{name:","tx.create(...)","tx.rollback()","type","us","usag","user","users;\")","var","within","world\").first(&user).recordnotfound()","{","}"],"development.html":["\"_draft\")","\"jinzhu\")","\"user=gorm","*gorm.db","*gorm.scop","*gorm.scope)","*scope)","+","//","1)","20)","30)",":=","=","?\",","`_draft`","`gorm:create`","`newcreatefunction`","abov","afterdelete)","afterquery)","api","api,","append","architectur","avail","base","befor","beforecreate)","beforeupdate)","bridg","call","callback","callbacks,","chain","chainabl","chains,","check","creat","creating,","crud","current","custom","db","db,","db.callback().create().after(\"gorm:create\").register(\"update_created_at\",","db.callback().create().before(\"gorm:create\").after(\"gorm:before_create\").register(\"my_plugin:before_create\",","db.callback().create().before(\"gorm:create\").register(\"update_created_at\",","db.callback().create().register(\"update_created_at\",","db.callback().create().remove(\"gorm:create\")","db.callback().create().replace(\"gorm:create\",","db.callback().delete().after(\"gorm:delete\").register(\"my_plugin:after_delete\",","db.callback().query().after(\"gorm:query\").register(\"my_plugin:after_query\",","db.callback().rowquery().register(\"publish:update_table_name\",","db.callback().update().before(\"gorm:update\").register(\"my_plugin:before_update\",","db.first(&user)","db.where(\"act","db.where(\"ag","db.where(\"nam","dbname=gorm","default","defiend","defin","delet","develop","each","err","even","example,","exist","filter","fulli","func","function","gorm","gorm.open(\"postgres\",","https://godoc.org/github.com/jinzhu/gorm","instanc","it,","itself","like:","more","name","new","newcreatefunction)","nowfunc())","on","oper","operation'","operation.","operations,","order","out","perform","plugin","power","pre","process","queri","querying,","refer","regist","relat","relation.","replac","row","row_queri","rows,","run","scope.hascolumn(\"created\")","scope.search.table(scope.tablename()","scope.setcolumn(\"created\",","somecondit","sslmode=disable\")","start","tabl","type,","updat","updatecreated(scop","updatecreated)","updatetablename(scop","updatetablename)","updating,","us","view","want","write","yetanothercondit","{","}"],"changelog.html":["\"github.com/jinzhu/gorm/dialects/mssql\"","\"github.com/jinzhu/now\"","&image{}}","(","(user",")","*","*gorm.db","*gorm.scope)","*time.tim","*user)","//","0);","0001","01","02",":=","=","==","[]interface{}{&user{},","_","_,","accord","affected,","alert","applic","bcrypt.generatefrompassword(user.password,","befor","beforesave,","beforeupdate(scop","beforeupdate,","below","blank","break","callback","case","chang","change,","check","column","common","convert","correctly.","database'","db","db.unscoped().model(model).where(\"deleted_at","default","delete'","deleted_at","deletedat,","doesn't","driver","drivers,","encryptedpassword","enough","err","error","errrecordnotfound","example:","exclud","exist","field","field'","fix","func","github.com/jinzhu/gorm/dialects/postgr","golint","golint,","good,","gorm","gorm.db","gorm.model,","gorm.open","gorm:\"column:s_k_u\",","h_t_t_p,","handled.","have","hstore","http","http'","http,","import","includ","initi","instead","it'","less","like:","log","logic","look","main()","make","migrat","model","model'","move","mssql","name","name,","necessari","need","new","nil","noth","null","null,","out","overwrit","packag","pw","pw)","pw,","queri","rang","record","recordnotfound","releas","renam","return","s_k_u,","sampl","scope","scope.setcolumn","scope.setcolumn(\"encryptedpassword\",","script:","select","set","sku","soft","special","sql","struct,","sure","tag,","then,","this,","those","time","time,","todbnam","type","ugly,","updat","upper","uri","us","user","user.encryptedpassword","v1.0","valu","var","won't","work,","{","}"]},"length":9},"tokenStore":{"root":{"0":{"0":{"0":{"1":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{}},"docs":{}},"1":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"2":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"1":{"0":{"0":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"}":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"\"":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},")":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},":":{"2":{"3":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"docs":{}},"docs":{}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"1":{"1":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029288702928870294}}}},"2":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.0041841004184100415}},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"3":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"docs":{}},"7":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0041841004184100415}}},"8":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"development.html":{"ref":"development.html","tf":0.004347826086956522}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"docs":{}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0033472803347280333}}}},"2":{"0":{"0":{"0":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"docs":{}},"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.004347826086956522}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002510460251046025}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0037656903765690376}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}}}}},"1":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},":":{"3":{"4":{"docs":{},":":{"1":{"0":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0041841004184100415}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"2":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"5":{"5":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"docs":{}},"9":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},"docs":{},"n":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}}}}}}}}}}}}}}},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}},"3":{"0":{"docs":{},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}},"docs":{},"r":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"4":{"2":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"docs":{},"t":{"docs":{},"h":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"9":{"9":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"docs":{}},"docs":{},"!":{"docs":{},"=":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}},"\"":{"2":{"2":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},"docs":{}},"4":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"\"":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"\"":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},".":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"/":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"=":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0033472803347280333}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"@":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"4":{"3":{"3":{"docs":{},"?":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"=":{"docs":{},"d":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"@":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"?":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"=":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"8":{"docs":{},"&":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},".":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}},".":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0037656903765690376}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.004347826086956522}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00502092050209205}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"%":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"%":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"%":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},".":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"\\":{"docs":{},"r":{"docs":{},"\\":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"_":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"(":{"1":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"1":{"1":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}},"docs":{}},"docs":{},",":{"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},",":{"3":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},",":{"4":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"2":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"docs":{}},"4":{"docs":{},",":{"5":{"docs":{},",":{"6":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"docs":{}}},"docs":{}}},"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"docs":{}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}}}}}}},"e":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"r":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304}}}},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"h":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0035650623885918}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"d":{"docs":{},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"u":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304}},"s":{"docs":{},"e":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}},"s":{"1":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"\"":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},".":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"'":{"1":{"1":{"1":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"docs":{}},"docs":{}},"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"z":{"docs":{},"h":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}},"?":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"*":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}}}}}},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"/":{"docs":{},"/":{"docs":{"./":{"ref":"./","tf":0.0457516339869281},"database.html":{"ref":"database.html","tf":0.0659025787965616},"models.html":{"ref":"models.html","tf":0.062388591800356503},"associations.html":{"ref":"associations.html","tf":0.038917089678511},"crud.html":{"ref":"crud.html","tf":0.03221757322175732},"callbacks.html":{"ref":"callbacks.html","tf":0.08755760368663594},"advanced.html":{"ref":"advanced.html","tf":0.059782608695652176},"development.html":{"ref":"development.html","tf":0.030434782608695653},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"/":{"docs":{},"/":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.049372384937238493}}}}}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.011461318051575931},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"=":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.008595988538681949},"crud.html":{"ref":"crud.html","tf":0.002510460251046025},"advanced.html":{"ref":"advanced.html","tf":0.024456521739130436},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"=":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.01015228426395939},"crud.html":{"ref":"crud.html","tf":0.038493723849372385},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.021739130434782608},"development.html":{"ref":"development.html","tf":0.034782608695652174},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"=":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"?":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002510460251046025}},"\"":{"docs":{},",":{"2":{"0":{"docs":{},",":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.01715481171548117},"advanced.html":{"ref":"advanced.html","tf":0.021739130434782608},"development.html":{"ref":"development.html","tf":0.017391304347826087}},"\"":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.025787965616045846},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"associations.html":{"ref":"associations.html","tf":10.023688663282572},"crud.html":{"ref":"crud.html","tf":0.0033472803347280333},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},"!":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"d":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.02005730659025788},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"2":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0033472803347280333}},"{":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"docs":{}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":5.002717391304348}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"l":{"docs":{},"i":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"c":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"c":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"t":{"docs":{},"x":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"e":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.007531380753138075}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"=":{"1":{"0":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"docs":{}},"8":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"docs":{}},"3":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"docs":{}},"docs":{}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}},"r":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"d":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"1":{"0":{"0":{"0":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}},"v":{"docs":{},"g":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0035650623885918},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}},"c":{"docs":{},"k":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"s":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"w":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"=":{"docs":{},"'":{"2":{"0":{"1":{"6":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.013043478260869565}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207},"callbacks.html":{"ref":"callbacks.html","tf":10.04147465437788},"development.html":{"ref":"development.html","tf":0.08260869565217391},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"s":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0035650623885918},"crud.html":{"ref":"crud.html","tf":0.0037656903765690376},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"changelog.html":{"ref":"changelog.html","tf":5.018264840182648}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"s":{"docs":{},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"s":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"o":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"e":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"models.html":{"ref":"models.html","tf":0.0017825311942959}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"o":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"r":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0037656903765690376}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.02005730659025788},"models.html":{"ref":"models.html","tf":0.0196078431372549},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}},"?":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"(":{"docs":{},"*":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{},"'":{"4":{"2":{"docs":{},"'":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.014326647564469915},"models.html":{"ref":"models.html","tf":0.0106951871657754},"crud.html":{"ref":"crud.html","tf":0.002510460251046025},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"development.html":{"ref":"development.html","tf":0.030434782608695653}},"e":{"docs":{},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"/":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"/":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.008912655971479501}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"/":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"associations.html":{"ref":"associations.html","tf":0.01015228426395939}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"s":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"d":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":2.500418410041841}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.012477718360071301},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":2.500418410041841},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":10.008595988538682},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.01358695652173913}},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}},"b":{"docs":{"development.html":{"ref":"development.html","tf":0.017391304347826087},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},".":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},":":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"y":{"docs":{},"_":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}},"i":{"docs":{},"f":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},".":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"docs":{}},"docs":{}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"1":{"0":{"0":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"development.html":{"ref":"development.html","tf":0.004347826086956522}},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},".":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"&":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},".":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},"o":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}},"[":{"docs":{},"]":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"1":{"0":{"0":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"docs":{},"]":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"docs":{}},"3":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"docs":{}}}}}},"o":{"docs":{},"g":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{},"{":{"1":{"docs":{},",":{"2":{"docs":{},",":{"3":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}},"docs":{}},"3":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"v":{"docs":{},"g":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{},"?":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"development.html":{"ref":"development.html","tf":0.008695652173913044}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"c":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0041841004184100415},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{},"{":{"2":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004602510460251046}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0106951871657754},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"e":{"docs":{},";":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"i":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.008786610878661089},"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729},"development.html":{"ref":"development.html","tf":0.017391304347826087}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0273972602739726}},"=":{"docs":{},"\"":{"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"u":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"'":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"development.html":{"ref":"development.html","tf":10.004347826086956}}}}}}},"s":{"docs":{},"c":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"o":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.014326647564469915}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.011461318051575931},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.03260869565217391},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.021739130434782608},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"u":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"r":{"docs":{},"a":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029288702928870294}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"e":{"docs":{},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.008695652173913044},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"c":{"docs":{},"h":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0037656903765690376},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},".":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"f":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}},"l":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.03208556149732621},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.005857740585774059},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"s":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"x":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"n":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0033472803347280333},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.008695652173913044},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"(":{"docs":{},"*":{"docs":{},"d":{"docs":{},"b":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.008912655971479501},"associations.html":{"ref":"associations.html","tf":0.02030456852791878}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0041841004184100415},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":3.333333333333333}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":3.3464052287581696},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"crud.html":{"ref":"crud.html","tf":0.0041841004184100415},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.021739130434782608},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.03722504230118443},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"3":{"docs":{},"\"":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"docs":{}}}}}}},"m":{"docs":{},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}},":":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"_":{"docs":{},"k":{"docs":{},"_":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"o":{"docs":{},"d":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"z":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"v":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"s":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"_":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0142602495543672},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0066945606694560665},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"=":{"1":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"1":{"1":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002510460251046025}}}},"docs":{}},"docs":{}},"docs":{}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.034383954154727794},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"n":{"docs":{},"c":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.007112970711297071},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.017191977077363897},"models.html":{"ref":"models.html","tf":0.0071301247771836}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"t":{"6":{"4":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}},"docs":{}},"docs":{"models.html":{"ref":"models.html","tf":0.0142602495543672},"associations.html":{"ref":"associations.html","tf":0.011844331641285956},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"e":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"e":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"t":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0053475935828877},"associations.html":{"ref":"associations.html","tf":0.030456852791878174},"crud.html":{"ref":"crud.html","tf":0.004602510460251046},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"e":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}},"n":{"docs":{},"u":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004602510460251046}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"changelog.html":{"ref":"changelog.html","tf":5.004566210045662}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"i":{"docs":{},"c":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}},"o":{"docs":{},"k":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"associations.html":{"ref":"associations.html","tf":0.00676818950930626}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}},"}":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}}}}}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"k":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"(":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"n":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.015228426395939087},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},"y":{"2":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}}}},"c":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"k":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"{":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.008595988538681949},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},"s":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.014326647564469915},"models.html":{"ref":"models.html","tf":10.007130124777184},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}},"v":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":0.002510460251046025},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.04634581105169341},"associations.html":{"ref":"associations.html","tf":0.025380710659898477},"crud.html":{"ref":"crud.html","tf":0.014225941422594143},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0228310502283105}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00502092050209205}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},"=":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0037656903765690376}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"w":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}},"o":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.016042780748663103},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.013071895424836602}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"crud.html":{"ref":"crud.html","tf":0.008786610878661089},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"u":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}},"'":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}},".":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0037656903765690376}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.011461318051575931}},"e":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"s":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"s":{"docs":{},"s":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"=":{"docs":{},"m":{"docs":{},"y":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"i":{"docs":{},"d":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"c":{"docs":{},"k":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"h":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}},"i":{"docs":{},"s":{"docs":{},"m":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"o":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"r":{"docs":{},"e":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},":":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.007949790794979079},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}},"n":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.0392156862745098},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"'":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0338409475465313},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.013043478260869565}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"w":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.005857740585774059},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"crud.html":{"ref":"crud.html","tf":2.500418410041841}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.005076142131979695}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},".":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00676818950930626},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"o":{"docs":{},"v":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.008786610878661089},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0033472803347280333}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002510460251046025},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.004602510460251046},"callbacks.html":{"ref":"callbacks.html","tf":0.02304147465437788},"advanced.html":{"ref":"advanced.html","tf":0.01358695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.02608695652173913}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"u":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.008695652173913044}}},"l":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"a":{"docs":{},"w":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}},"n":{"docs":{},"g":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.02304147465437788},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.013043478260869565}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}},"_":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0028653295128939827}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"a":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"(":{"docs":{},"\"":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"b":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"u":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0066945606694560665},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"i":{"docs":{},"t":{"docs":{},"e":{"3":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"docs":{}}}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"docs":{}},"docs":{}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":3.3398692810457513},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"u":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.0285204991087344},"associations.html":{"ref":"associations.html","tf":0.030456852791878174},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.026737967914438502},"associations.html":{"ref":"associations.html","tf":0.04568527918781726},"crud.html":{"ref":"crud.html","tf":0.005857740585774059},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877}}}},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.0057306590257879654},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"r":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"m":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.030303030303030304},"crud.html":{"ref":"crud.html","tf":0.0100418410041841},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.029707112970711297},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"f":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.013824884792626729}}}}},"s":{"docs":{},"l":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"=":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"p":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"v":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0041841004184100415},"callbacks.html":{"ref":"callbacks.html","tf":0.027649769585253458}},"(":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"=":{"docs":{},"?":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}},"e":{"docs":{},"'":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.011844331641285956},"crud.html":{"ref":"crud.html","tf":0.002510460251046025}}}},"a":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}},"u":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}},"_":{"docs":{},"k":{"docs":{},"_":{"docs":{},"u":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"o":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},")":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"y":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826}}},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"callbacks.html":{"ref":"callbacks.html","tf":0.03686635944700461},"advanced.html":{"ref":"advanced.html","tf":0.016304347826086956}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},"s":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"docs":{}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.023172905525846704},"associations.html":{"ref":"associations.html","tf":0.047377326565143825},"crud.html":{"ref":"crud.html","tf":0.0033472803347280333},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.03724928366762178},"models.html":{"ref":"models.html","tf":0.0142602495543672},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.004347826086956522}},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}}}}}}}},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.012477718360071301},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.012477718360071301},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"e":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"s":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}},"e":{"docs":{},"m":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"n":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"w":{"docs":{},"o":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"x":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"u":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.008152173913043478}}}}}}}}}}}}}}},"u":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"models.html":{"ref":"models.html","tf":0.008912655971479501},"associations.html":{"ref":"associations.html","tf":0.015228426395939087},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654},"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0057306590257879654}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002510460251046025}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},")":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013071895424836602},"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.021338912133891212},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"=":{"docs":{},"'":{"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.013043478260869565}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"s":{"docs":{"models.html":{"ref":"models.html","tf":0.017825311942959002},"associations.html":{"ref":"associations.html","tf":0.005076142131979695},"crud.html":{"ref":"crud.html","tf":0.005439330543933054},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0228310502283105}},"e":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0106951871657754},"associations.html":{"ref":"associations.html","tf":0.030456852791878174},"crud.html":{"ref":"crud.html","tf":0.032635983263598324},"advanced.html":{"ref":"advanced.html","tf":0.010869565217391304},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0071301247771836},"associations.html":{"ref":"associations.html","tf":0.01015228426395939}}}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.002510460251046025}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004602510460251046}},"\"":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"{":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0041841004184100415}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029288702928870294}}}}}}}},"\"":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"a":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":5.002717391304348}}}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}},"g":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"r":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"v":{"1":{"docs":{},".":{"0":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{}}},"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"e":{"docs":{},"'":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}},"l":{"docs":{},"u":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.010878661087866108},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"e":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"s":{"docs":{},"(":{"docs":{},"'":{"9":{"9":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"docs":{}},"docs":{}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}},"e":{"docs":{},"w":{"docs":{"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}},"w":{"docs":{},"o":{"docs":{},"s":{"docs":{},"m":{"docs":{},"v":{"docs":{},"p":{"docs":{},"@":{"docs":{},"g":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.006535947712418301}}}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0035650623885918},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}},"r":{"docs":{},"k":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"l":{"docs":{},"d":{"docs":{},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006535947712418301},"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":2.500418410041841},"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}},"a":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0029288702928870294},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}},"i":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"{":{"docs":{"./":{"ref":"./","tf":0.0196078431372549},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.030303030303030304},"associations.html":{"ref":"associations.html","tf":0.04568527918781726},"crud.html":{"ref":"crud.html","tf":0.007112970711297071},"callbacks.html":{"ref":"callbacks.html","tf":0.027649769585253458},"advanced.html":{"ref":"advanced.html","tf":0.02717391304347826},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}},"}":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}},"}":{"docs":{"./":{"ref":"./","tf":0.0196078431372549},"database.html":{"ref":"database.html","tf":0.011461318051575931},"models.html":{"ref":"models.html","tf":0.030303030303030304},"associations.html":{"ref":"associations.html","tf":0.04568527918781726},"crud.html":{"ref":"crud.html","tf":0.007112970711297071},"callbacks.html":{"ref":"callbacks.html","tf":0.027649769585253458},"advanced.html":{"ref":"advanced.html","tf":0.02717391304347826},"development.html":{"ref":"development.html","tf":0.02608695652173913},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}},"&":{"docs":{"associations.html":{"ref":"associations.html","tf":0.01015228426395939},"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"}":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}},"`":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}}}}}}}},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827},"models.html":{"ref":"models.html","tf":0.0017825311942959}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"`":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}},"i":{"docs":{},"d":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.0028653295128939827}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00338409475465313},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"s":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.008595988538681949},"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0053475935828877},"callbacks.html":{"ref":"callbacks.html","tf":0.009216589861751152}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}},"s":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},":":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},":":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"2":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0035650623885918},"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},":":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},";":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"2":{"5":{"5":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}},"docs":{}},"docs":{}},"docs":{}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"1":{"0":{"0":{"docs":{},")":{"docs":{},";":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},";":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},":":{"docs":{},"'":{"docs":{},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},"\"":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.008695652173913044}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"`":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"`":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"*":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"`":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"`":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}}}}}},"_":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}},"'":{"1":{"0":{"0":{"docs":{},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}},"docs":{}},"docs":{}},"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}},"docs":{}},"docs":{}},"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}}},"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"[":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0020920502092050207}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016736401673640166}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}}}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"t":{"docs":{},"x":{"docs":{},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}}},"*":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008460236886632826},"crud.html":{"ref":"crud.html","tf":0.026778242677824266},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029288702928870294},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826},"development.html":{"ref":"development.html","tf":0.008695652173913044},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0029288702928870294},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}},"e":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576},"development.html":{"ref":"development.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}},"d":{"docs":{},"b":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083},"callbacks.html":{"ref":"callbacks.html","tf":0.018433179723502304},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005434782608695652}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}},"+":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"crud.html":{"ref":"crud.html","tf":0.0016736401673640166},"development.html":{"ref":"development.html","tf":0.004347826086956522}}},"[":{"docs":{},"]":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.001692047377326565}},"{":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0017825311942959},"associations.html":{"ref":"associations.html","tf":0.00338409475465313}},"e":{"docs":{},"{":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.00338409475465313}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.001692047377326565},"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},"{":{"1":{"1":{"docs":{},",":{"2":{"2":{"docs":{},",":{"3":{"3":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.002717391304347826}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{},"{":{"1":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}},"docs":{}},"docs":{}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}},"{":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008368200836820083}}}}}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125},"advanced.html":{"ref":"advanced.html","tf":0.01358695652173913}}}}},"<":{"docs":{},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0037656903765690376}}}},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0100418410041841},"callbacks.html":{"ref":"callbacks.html","tf":0.004608294930875576}},"=":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012552301255230125}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"crud.html":{"ref":"crud.html","tf":0.00041841004184100416}}}}}},"y":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}},"length":1980},"corpusTokens":["!=","\"\",","\"\"}","\"%jin%\").find(&users)","\"%jinzhu%\")","\"%jinzhu%\").delete(email{})","\"%jinzhu%\";","\"/tmp/gorm.db\")","\"22\").find(&users)","\"411111111111\").find(&user)","\"\\r\\n\",","\"_draft\")","\"`","\"active\").preload(\"orders\",","\"actived\":","\"addresses\"","\"admin\"","\"admin\")","\"admin\").or(\"rol","\"admin_users\"","\"age\")","\"age\":","\"age\"}).find(&users)","\"bill","\"c\")","\"cancelled\").find(&users)","\"cities(id)\",","\"code","\"code\")","\"creditcard\")","\"de\"})","\"de\"},","\"email","\"emails\"","\"en\"},","\"engine=innodb\"","\"engine=innodb\").automigrate(&user{})","\"engine=innodb\").createtable(&user{})","\"for","\"giraffe\"}).error;","\"github.com/go","\"github.com/jinzhu/gorm\"","\"github.com/jinzhu/gorm/dialects/mssql\"","\"github.com/jinzhu/gorm/dialects/mysql\"","\"github.com/jinzhu/gorm/dialects/postgres\"","\"github.com/jinzhu/gorm/dialects/sqlite\"","\"github.com/jinzhu/now\"","\"hello","\"hello\")","\"hello\",","\"host=myhost","\"id","\"id\"","\"jinzhu","\"jinzhu\"","\"jinzhu\")","\"jinzhu\").count(&count)","\"jinzhu\").delete()","\"jinzhu\").find(&users)","\"jinzhu\").first(&user)","\"jinzhu\").first(&user).error;","\"jinzhu\").first(&user{})","\"jinzhu\").or(\"nam","\"jinzhu\").rows()","\"jinzhu\").select(\"name,","\"jinzhu\");","\"jinzhu\",","\"jinzhu\";","\"jinzhu\"}","\"jinzhu\"})","\"jinzhu\"}).assign(user{age:","\"jinzhu\"}).attrs(user{age:","\"jinzhu\"}).first(&user)","\"jinzhu\"}).firstorcreate(&user)","\"jinzhu\"}).firstorinit(&user)","\"jinzhu@example.com\");","\"jinzhu@example.com\"},","\"jinzhu@example.org\").joins(\"join","\"l1212\")","\"l1212\",","\"languages\"","\"languages\")","\"languages\".\"id\"","\"lion\"}).error;","\"name","\"name\")","\"name\",","\"non_existing\",","\"non_existing\"}","\"non_existing\"})","\"non_existing\"}).assign(user{age:","\"non_existing\"}).attrs(\"age\",","\"non_existing\"}).attrs(user{age:","\"on","\"option","\"orders\"","\"orders\".\"deleted_at\"","\"paid\").preload(\"orders.orderitems\").find(&users)","\"paid\").queryexpr()).find(&orders)","\"prefix_\"","\"price\"","\"products\"","\"products\")","\"profiles\"","\"quantity\"","\"restrict\")","\"restrict\",","\"ship","\"shipped\"})).find(&orders)","\"sqlserver://username:password@localhost:1433?database=dbname\")","\"state","\"string_primary_key\")","\"super_admin\").find(&users)","\"super_admin\").not(\"nam","\"test.db\")","\"text\")","\"updated_at\"","\"user:password@/dbname?charset=utf8&parsetime=true&loc=local\")","\"user=gorm","\"user_languages\"","\"user_languages\".\"language_id\"","\"user_languages\".\"user_id\"","\"users\"","\"users\".\"id\"","\"zh\"},","&","&age)","&age,","&ages)","&email)","&image{}}","&names)","&order{})","&product{},","&user)","'100',","'2'","'2';","'2013","'active';","'admin'","'admin';","'db')","'galeone'","'jinzhu","'jinzhu'","'jinzhu'\").or(map[string]interface{}{\"name\":","'jinzhu'\").or(user{name:","'jinzhu';","'non_existing';","'paid')));","'string_primary_key'","'super_admin';","'tx'","'user_languages'","(","(\"bill","(\"jinzhu\",","(\"name\")","(\"name\",","(\"non_existing\");","(\"non_existing\",","(\"ship","(\"user_id\",\"language_id\")","(\"user_languages\".\"language_id\"","('111'))","('cancelled');","('en');","('zh');","(*sql.row)","(*sql.rows,","(1,2)","(1,2,3);","(1,2,3,4)","(1,2,3,4);","(10,","(111,","(20,","(4,5,6);","(?)\",","(address1)","(almost)","(amount","(before/aft","(belong","(contain","(count)","(db","(eager","(edger","(err","(ha","(more","(name)","(name,","(name,billing_address_id,shipping_address_id)","(onli","(optim","(plain","(same","(select","(state","(struct","(u","(u.id","(use","(user","(user)","(user_id,email)","(users)","(users1)","(users2)",")","*","*db'","*db,","*gorm.db","*gorm.db)","*gorm.db,","*gorm.scop","*gorm.scope)","*scope)","*sql.db","*sql.row","*time.tim","*user)","*with","+","...","//","////","0))","0);","0,","0001","01","01',","02","1","1\").updatecolumn(\"quantity\",","1\");","1\"},","1)","1))","1).find(&users2)","1);","1,","10","10)","100","100))","100).rows()","100).scan(&results)","100)})","1000","1000\")","1000)","1000})","10:23\"","10;","11","11);","111","111,","111;","112,","11}).updates(map[string]interface{}{\"name\":","123","123;","17","18,","18})","18}).rowsaffect","1;","1st","2\"","2\").find(&users).count(&count)","2\");","2\"}).find(&users)","2',","2';","2);","2,","20","20\").find(&user)","20\").find(&users)","20)","20).delete(&user{})","20).firstorinit(&user)","20);","2000","2000)","20;","20}","20})","20}).find(&users)","20}).first(&user)","20}).firstorcreate(&user)","20}).firstorinit(&user)","21,","21:34:10'","22);","22}).find(&users)","23","23)","255,","29","2@example.com\");","2@example@example.com\"},","2nd","3).scan(&result)","30)","30}","30}).firstorcreate(&user)","30}).firstorinit(&user)","3;","3rd","42).rows()","4th","99,",":",":=","<>","=","==","=>",">",">=","?","?\",","?\",\"jinzhu\").where(\"ag","?\",20,\"admin\").find(&users)","[]customizeaccount","[]email","[]email{","[]int64","[]int64{11,22,33})","[]interface{}{&user{},","[]int{10,","[]languag","[]language{","[]profil","[]string","[]string)","[]string{\"jinzhu\",","[]user","_","_,","`*sql.db`","`[]error`","`_draft`","`age_of_the_beast`","`age`","`beast_id`","`birthday`","`created_at`","`createdat`","`createdat`,","`day_of_the_beast`","`deleted_users`","`deletedat`","`false`","`geterrors`,","`gorm:\"","`gorm:\"auto_increment\"`","`gorm:\"column:age_of_the_beast\"`","`gorm:\"column:beast_id\"`","`gorm:\"column:day_of_the_beast\"`","`gorm:\"default:'galeone'\"`","`gorm:\"foreignkey:profileid;associationforeignkey:refer\"`","`gorm:\"foreignkey:profilerefer\"`","`gorm:\"foreignkey:userid;associationforeignkey:refer\"`","`gorm:\"foreignkey:userrefer\"`","`gorm:\"index\"`","`gorm:\"index:idx_name_code\"`","`gorm:\"many2many:personaccount;associationforeignkey:idaccount;foreignkey:idperson\"`","`gorm:\"many2many:user_languages;\"`","`gorm:\"not","`gorm:\"polymorphic:owner;\"`","`gorm:\"primary_key\"`","`gorm:\"primary_key:true\"`","`gorm:\"save_associations:false\"`","`gorm:\"size:255\"`","`gorm:\"type:varchar(100);unique\"`","`gorm:\"type:varchar(100);unique_index\"`","`gorm:create`","`id`","`id`,","`idx_user_name_age`","`idx_user_name`","`index`","`languages`","`map`,","`name`","`name`,","`newcreatefunction`","`primary_key`","`products`","`profile`,","`profileid`","`profiles`","`rowsaffected`","`struct`,","`tablename`","`text`","`true`","`type`","`unique_index`","`update`","`updatedat`","`updatedat`,","`updates`","`user_languages`","`user`","`user`'","`user`,","`users`","abil","abov","accord","account","active=true;","actived:","actived=false,","add","address","address1","address2","address{address1:","advanc","affect","affected,","aftercr","aftercreate()","aftercreate(scop","aftercreate(tx","afterdelet","afterdelete)","afterfind","afterquery)","aftersav","afterupd","ag","age\").find(&users)","age\").row()","age\").where(\"nam","age)","age,","age:","age;","age=100,","age=18","age=18,","age=18;","age=30","aim","alert","alreadi","also,","amount","amountgreaterthan1000(db","anim","animal.nam","animalid","animals(\"age\")","animal{age:","anoth","api","api,","append","appli","applic","architectur","argument","arguments,","assgin","assign","associ","associations,","associations.","attr","attribut","attribute,","attributes,","author","auto","automat","automatically!","automigr","avail","avg(amount)","avoid","back","base","batch","bcrypt.generatefrompassword(user.password,","befor","beforecr","beforecreate(scop","beforecreate)","beforedelet","beforesav","beforesave(scop","beforesave,","beforeupd","beforeupdate()","beforeupdate(scop","beforeupdate)","beforeupdate,","begin","belong","belongs_to","below","below.","between","billingaddress","billingaddress:","billingaddressid","birthday","birthday:","birthday='2016","blank","blank,","bool","break","bridg","builder","built","call","callback","callback,","callbacks,","cancel","card","carefulli","case","cat","chain","chainabl","chains,","chang","change,","changelog","changes.","check","clear","coalesce(age,'42')","cod","code","code)","column","column'","column?","columns,","combin","come","commit","commit;","commited.","common","compani","companyid","composit","condit","conditions)","config","conflict\").create(&product)","conflict;","connect","contain","contributor","convent","convert","correctly.","count","count(*)","creat","create/save/update/delete/find)","createanimals(db","created.","createdat","createdat,","creating,","creating/upd","credit","credit_card","credit_cards.user_id","creditcard","creditcard'","creditcard,","crud","crud:","current","custom","customizeaccount","customizeperson","data","data.","databas","database\")","database'","database,","database.","databases,","databases.","date","date,","date.","db","db,","db.automigrate(&product{})","db.automigrate(&user{})","db.automigrate(&user{},","db.begin()","db.callback().create().after(\"gorm:create\").register(\"update_created_at\",","db.callback().create().before(\"gorm:create\").after(\"gorm:before_create\").register(\"my_plugin:before_create\",","db.callback().create().before(\"gorm:create\").register(\"update_created_at\",","db.callback().create().register(\"update_created_at\",","db.callback().create().remove(\"gorm:create\")","db.callback().create().replace(\"gorm:create\",","db.callback().delete().after(\"gorm:delete\").register(\"my_plugin:after_delete\",","db.callback().query().after(\"gorm:query\").register(\"my_plugin:after_query\",","db.callback().rowquery().register(\"publish:update_table_name\",","db.callback().update().before(\"gorm:update\").register(\"my_plugin:before_update\",","db.close()","db.create(&animal)","db.create(&product{code:","db.create(&user)","db.createtable(&user{})","db.db()","db.db().ping()","db.db().setmaxidleconns(10)","db.db().setmaxopenconns(100)","db.debug().where(\"nam","db.delete(&email)","db.delete(&product)","db.delete(&user)","db.delete(email{},","db.droptable(\"users\")","db.droptable(&user{})","db.droptableifexists(&user{},","db.exec(\"drop","db.exec(\"upd","db.find(&user,","db.find(&users)","db.find(&users).pluck(\"age\",","db.find(&users,","db.first(&product,","db.first(&user)","db.first(&user).limit(10).find(&users).geterrors()","db.first(&user,","db.firstorcreate(&user,","db.firstorinit(&user,","db.hastable(\"users\")","db.hastable(&user{})","db.joins(\"join","db.last(&user)","db.limit(10).find(&users1).limit(","db.limit(3).find(&users)","db.logmode(false)","db.logmode(true)","db.model(&language).related(&users)","db.model(&product).update(\"price\",","db.model(&product).updatecolumn(\"quantity\",","db.model(&product).updates(map[string]interface{}{\"price\":","db.model(&product).where(\"quant","db.model(&user).association(\"languages\")","db.model(&user).association(\"languages\").append([]language{languagezh,","db.model(&user).association(\"languages\").append(language{name:","db.model(&user).association(\"languages\").clear()","db.model(&user).association(\"languages\").count()","db.model(&user).association(\"languages\").delete([]language{languagezh,","db.model(&user).association(\"languages\").delete(languagezh,","db.model(&user).association(\"languages\").error","db.model(&user).association(\"languages\").find(&languages)","db.model(&user).association(\"languages\").replace([]language{languagezh,","db.model(&user).association(\"languages\").replace(language{name:","db.model(&user).omit(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).related(&card)","db.model(&user).related(&card,","db.model(&user).related(&credit_card).recordnotfound()","db.model(&user).related(&emails)","db.model(&user).related(&languages,","db.model(&user).related(&profile)","db.model(&user).select(\"name\").updates(map[string]interface{}{\"name\":","db.model(&user).set(\"gorm:update_option\",","db.model(&user).update(\"createdat\",","db.model(&user).update(\"name\",","db.model(&user).updatecolumn(\"name\",","db.model(&user).updatecolumns(user{name:","db.model(&user).updates(map[string]interface{}{\"name\":","db.model(&user).updates(user{name:","db.model(&user).where(\"act","db.model(&user{}).addforeignkey(\"city_id\",","db.model(&user{}).addindex(\"idx_user_name\",","db.model(&user{}).addindex(\"idx_user_name_age\",","db.model(&user{}).adduniqueindex(\"idx_user_name\",","db.model(&user{}).adduniqueindex(\"idx_user_name_age\",","db.model(&user{}).dropcolumn(\"description\")","db.model(&user{}).modifycolumn(\"description\",","db.model(&user{}).pluck(\"name\",","db.model(&user{}).removeindex(\"idx_user_name\")","db.model(&user{}).where(\"nam","db.model(user{}).updates(user{name:","db.newrecord(user)","db.not(\"nam","db.not(\"name\",","db.not([]int64{1,2,3}).first(&user)","db.not([]int64{}).first(&user)","db.not(user{name:","db.offset(10).find(&users1).offset(","db.offset(3).find(&users)","db.order(\"ag","db.order(\"orders.amount","db.preload(\"orders\").find(&users)","db.preload(\"orders\").preload(\"profile\").preload(\"role\").find(&users)","db.preload(\"orders\",","db.preload(\"orders.orderitems\").find(&users)","db.raw(\"select","db.save(&user)","db.scanrows(rows,","db.scopes(amountgreaterthan1000).where(\"statu","db.scopes(amountgreaterthan1000,","db.scopes(orderstatus([]string{\"paid\",","db.select(\"name,","db.select([]string{\"name\",","db.set(\"gorm:delete_option\",","db.set(\"gorm:insert_option\",","db.set(\"gorm:query_option\",","db.set(\"gorm:save_associations\",","db.set(\"gorm:table_options\",","db.setlogger(gorm.logger{revel.trace})","db.setlogger(log.new(os.stdout,","db.singulartable(true)","db.table(\"deleted_users\").count(&count)","db.table(\"deleted_users\").createtable(&user{})","db.table(\"deleted_users\").find(&deleted_users)","db.table(\"deleted_users\").pluck(\"name\",","db.table(\"deleted_users\").where(\"nam","db.table(\"orders\").select(\"avg(amount)\").where(\"st","db.table(\"orders\").select(\"date(created_at)","db.table(\"users\").select(\"coalesce(age,?)\",","db.table(\"users\").select(\"name,","db.table(\"users\").select(\"users.name,","db.table(\"users\").where(\"id","db.table(\"users\").where(\"nam","db.unscoped().delete(&order)","db.unscoped().model(model).where(\"deleted_at","db.unscoped().where(\"ag","db.where(\"act","db.where(\"ag","db.where(\"amount","db.where(\"created_at","db.where(\"email","db.where(\"nam","db.where(\"pay_mode_sign","db.where(\"rol","db.where(\"st","db.where(\"updated_at","db.where(&user{name:","db.where([]int64{20,","db.where(map[string]interface{}{\"name\":","db.where(user{name:","dbname=gorm","debug","default","default,","defaulttablenam","defaulttablename;","defaulttablenamehandl","defer","defiend","defin","definit","delet","delete'","delete,","deleted_at","deleted_at=\"2013","deleted_us","deleted_users;","deletedat","deletedat'","deletedat,","deleting,","desc","desc\")","desc\").find(&users1).order(\"age\",","desc\").order(\"name\").find(&users)","desc,","desc;","descript","description'","destin","detail","develop","dialect","dialect,","differ","disabl","docker","doesn't","dog","don't","driver","driver/mysql\"","drivers,","drop","dropcolumn","dynam","each","easier","easily.","edit","email","email\").rows()","email'","emails,","emails.email","emails.email\").joins(\"left","emails.user_id","emails:","emb","enabl","encryptedpassword","enough","ensur","err","error","error)","error,","errors.","errors.new(\"read","errors.new(\"us","errrecordnotfound","even","exampl","example,","example:","exclud","exist","explicitli","express","extendable,","extra","fals","false).create(&user)","false).save(&user)","false})","fantast","featur","field","field'","field,","fields'","fields,","fields;","file","fill","filter","find","findabl","first","first.","firstorcr","firstorinit","fix","flow","foreign","foreignkey","found","friendli","friendly.","full","fulli","func","func(*db)","func(db","function","futur","gener","get","github.com/jinzhu/gorm","github.com/jinzhu/gorm/dialects/postgr","given","global","go","golang,","golint","golint,","good,","gorm","gorm'","gorm.db","gorm.defaulttablenamehandl","gorm.expr(\"pric","gorm.expr(\"quant","gorm.model","gorm.model,","gorm.open","gorm.open(\"mssql\",","gorm.open(\"mysql\",","gorm.open(\"postgres\",","gorm.open(\"sqlite3\",","gorm:\"column:s_k_u\",","gorm:save_associ","greater","group","h_t_t_p,","handl","handled.","handling...","happen","happened,","has_many,","has_one,","have","haven't","helper","hstore","http","http'","http,","http://github.com/jinzhu","http://twitter.com/zhangjinzhu","https://github.com/jinzhu/gorm/blob/master/dialect.go","https://github.com/jinzhu/gorm/blob/master/logger.go","https://github.com/jinzhu/gorm/graphs/contributor","https://godoc.org/github.com/jinzhu/gorm","id","id,","id=10","id=10;","id=111","id=111;","idaccount","idperson","ignor","ignorem","import","includ","index","indexes,","init","initi","inject","inlin","inner","insert","instal","instanc","instead","int","int64","integ","interfac","it'","it,","iter","itself","jinzhu","jinzhu';","join","keep","key","key)","key,","l1212","languag","languagecod","languageen)","languageen})","languages,","languages:","last","lastweek).find(&users)","lastweek,","less","librari","licens","license.","like:","limit","linux","load","loading)","log","logger","logger,","logic","look","mac,","made","main","main()","make","mani","many,","many2many,","map","map)","map,","map[string]interface{}","map[string]interface{}{\"age\":","map[string]interface{}{\"name\":","match","matched,","mean","method","method,","migrat","miss","mit","mode","model","model'","model,","modifi","modifycolumn","more","move","mssql","multipl","mysql","name","name\").find(&users)","name'","name,","name:","name;","name='hello'","name='hello',","name='jinzhu","necessari","need","nest","never","new","newcreatefunction)","nil","non","none","not(nam","not,","note","note:","noth","nowfunc())","null","null\"`","null,","null;","null;unique\"`","nullabl","num","number","object","offici","offset","omit","omitted,","on","onc","ondelet","one,","onupd","oper","operation'","operation,","operation.","operations,","option","order","orders.amount","orderstatus(statu","orm","otherwis","out","overrid","overview","overwrit","ownerid","ownertyp","packag","paid,","paidwithcod(db","paidwithcod).find(&orders)","paidwithcreditcard(db","paidwithcreditcard).find(&orders)","panic(\"fail","param","paramet","parameter.","parameters)","parsetim","pass","password=mypassword\")","path,","perform","perman","ping","plain","pluck","plugin","plural","point,","pointer","polymorph","polymorphism)","pool","post","postgresql","power","pre","preload","price","price:","primari","print","process","product","product'","profil","profileid","profileref","project","protect","pw","pw)","pw,","quantiti","queri","querying,","quick","rang","raw","read","record","record'","record,","recordnotfound","refer","regardless","regist","relat","relation.","relationship","relationship,","relationship.","releas","reload","rememb","remov","renam","reorder","replac","request","reset","result","retriev","return","role","rollback","row","row.scan(&name,","row_queri","rows,","rows.close()","rows.next()","rows.scan(&name,","rule","run","s_k_u,","same","sampl","save","save()","save/delet","scan","schema","schema,","scope","scope.db().model(u).update(\"role\",","scope.hascolumn(\"created\")","scope.search.table(scope.tablename()","scope.setcolumn","scope.setcolumn(\"created\",","scope.setcolumn(\"encryptedpassword\",","scope.setcolumn(\"id\",","scope.setcolumn,","scopes),","script:","select","select,","self","server","server,","set","ship","shipped_at=?","shippingaddress","shippingaddress:","shippingaddressid","show","similar","singl","size","skip","sku","slice","snake","soft","somecondit","someth","sourc","source'","source,","special","specif","specifi","sql","sql)","sql,","sql.db","sql.nullint64","sql.nullstr","sql.row","sqlite3","sslmode=dis","sslmode=disable\")","start","state","statement","status)","stop","store","string","string)","struct","struct,","struct.","subqueri","subscrib","suffix","sum(amount)","support","support,","supported,","sure","tabl","table(id)","tablenam","tablename()","tables,","tag","tag,","test","them,","then,","thing","this,","this:","those","throw","time","time,","time.","time.now())","time.now(),","time.now()}","time.tim","time.time,","timestamp","timestamp,","to),","to,","to:","today).find(&users)","todbnam","total","total\").group(\"date(created_at)\").having(\"sum(amount)","total\").group(\"date(created_at)\").rows()","toy","transact","transaction,","transaction.","transaction;","transactions,","true","true).find(&users2)","true).update(\"name\",","true,","two","tx","tx.commit()","tx.create(&animal{name:","tx.create(...)","tx.model(u).update(\"role\",","tx.rollback()","type","type,","u","u.readonly()","u.rol","ugly,","uint","under","unfound","uniqu","unknown)\").delete(&email)","unknown)\").update(\"name,","unknown);","unless","unscop","unsupport","unus","updaing,","updat","update\").first(&user,","update(),","update,","update;","updatecolumn","updatecolumn,","updatecreated(scop","updatecreated)","updated_at","updated_at='2013","updatedat","updatedat,","updatetablename(scop","updatetablename)","updating,","upgrad","upper","uri","us","usag","user","user\")","user'","user)","user.ag","user.encryptedpassword","user.nam","user=gorm","user_id","user_languag","userid","userref","users.id","users.id\").rows()","users.id\").scan(&results)","users.id\").where(\"credit_cards.numb","users;","users;\")","user{","user{age:","user{id:","user{name:","uuid.new())","v1.0","valid","valu","value,","values('99');","values,","var","variabl","variable'","version","view","visibl","want","warn","warning:","whenev","with:","within","without","won't","work","work,","world\").first(&user).recordnotfound()","wosmvp@gmail.com","wrap","write","yetanothercondit","zero","{","{email:","{name:","{}","}","}).find(&users)","},"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Getting Started with GORM","keywords":"","body":"GORM\nThe fantastic ORM library for Golang, aims to be developer friendly.\n\n\n\nOverview\n\nFull-Featured ORM (almost)\nAssociations (Has One, Has Many, Belongs To, Many To Many, Polymorphism)\nCallbacks (Before/After Create/Save/Update/Delete/Find)\nPreloading (eager loading)\nTransactions\nComposite Primary Key\nSQL Builder\nAuto Migrations\nLogger\nExtendable, write Plugins based on GORM callbacks\nEvery feature comes with tests\nDeveloper Friendly\n\nInstall\ngo get -u github.com/jinzhu/gorm\n\nUpgrading To V1.0\n\nCHANGELOG\n\nQuick Start\npackage main\n\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/sqlite\"\n)\n\ntype Product struct {\n  gorm.Model\n  Code string\n  Price uint\n}\n\nfunc main() {\n  db, err := gorm.Open(\"sqlite3\", \"test.db\")\n  if err != nil {\n    panic(\"failed to connect database\")\n  }\n  defer db.Close()\n\n  // Migrate the schema\n  db.AutoMigrate(&Product{})\n\n  // Create\n  db.Create(&Product{Code: \"L1212\", Price: 1000})\n\n  // Read\n  var product Product\n  db.First(&product, 1) // find product with id 1\n  db.First(&product, \"code = ?\", \"L1212\") // find product with code l1212\n\n  // Update - update product's price to 2000\n  db.Model(&product).Update(\"Price\", 2000)\n\n  // Delete - delete product\n  db.Delete(&product)\n}\n\nContributors\nhttps://github.com/jinzhu/gorm/graphs/contributors\nSupporting the project\n\nAuthor\njinzhu\n\nhttp://github.com/jinzhu\nwosmvp@gmail.com\nhttp://twitter.com/zhangjinzhu\n\nLicense\nReleased under the MIT License.\n"},"database.html":{"url":"database.html","title":"Database","keywords":"","body":"Database\n\nConnecting to a database\nIn order to connect to a database, you need to import the database's driver first. For example:\nimport _ \"github.com/go-sql-driver/mysql\"\n\nGORM has wrapped some drivers, for easier to remember the import path, so you could import the mysql driver with\nimport _ \"github.com/jinzhu/gorm/dialects/mysql\"\n// import _ \"github.com/jinzhu/gorm/dialects/postgres\"\n// import _ \"github.com/jinzhu/gorm/dialects/sqlite\"\n// import _ \"github.com/jinzhu/gorm/dialects/mssql\"\n\nMySQL\nNOTE: In order to handle time.Time, you need to include parseTime as a parameter. (More supported parameters)\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/mysql\"\n)\n\nfunc main() {\n  db, err := gorm.Open(\"mysql\", \"user:password@/dbname?charset=utf8&parseTime=True&loc=Local\")\n  defer db.Close()\n}\n\nPostgreSQL\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/postgres\"\n)\n\nfunc main() {\n  db, err := gorm.Open(\"postgres\", \"host=myhost user=gorm dbname=gorm sslmode=disable password=mypassword\")\n  defer db.Close()\n}\n\nSqlite3\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/sqlite\"\n)\n\nfunc main() {\n  db, err := gorm.Open(\"sqlite3\", \"/tmp/gorm.db\")\n  defer db.Close()\n}\n\nSQL Server\nGet started with SQL Server, it can running on your Mac, Linux with Docker\nimport (\n    \"github.com/jinzhu/gorm\"\n    _ \"github.com/jinzhu/gorm/dialects/mssql\"\n)\n\nfunc main() {\n  db, err = gorm.Open(\"mssql\", \"sqlserver://username:password@localhost:1433?database=dbname\")\n  defer db.Close()\n}\n\nWrite Dialect for unsupported databases\nGORM officially supports the above databases, but you could write a dialect for unsupported databases.\nTo write your own dialect, refer to: https://github.com/jinzhu/gorm/blob/master/dialect.go\nMigration\nAuto Migration\nAutomatically migrate your schema, to keep your schema update to date.\nWARNING: AutoMigrate will ONLY create tables, missing columns and missing indexes, and WON'T change existing column's type or delete unused columns to protect your data.\ndb.AutoMigrate(&User{})\n\ndb.AutoMigrate(&User{}, &Product{}, &Order{})\n\n// Add table suffix when create tables\ndb.Set(\"gorm:table_options\", \"ENGINE=InnoDB\").AutoMigrate(&User{})\n\nHas Table\n// Check model `User`'s table exists or not\ndb.HasTable(&User{})\n\n// Check table `users` exists or not\ndb.HasTable(\"users\")\n\nCreate Table\n// Create table for model `User`\ndb.CreateTable(&User{})\n\n// will append \"ENGINE=InnoDB\" to the SQL statement when creating table `users`\ndb.Set(\"gorm:table_options\", \"ENGINE=InnoDB\").CreateTable(&User{})\n\nDrop table\n// Drop model `User`'s table\ndb.DropTable(&User{})\n\n// Drop table `users`\ndb.DropTable(\"users\")\n\n// Drop model's `User`'s table and table `products`\ndb.DropTableIfExists(&User{}, \"products\")\n\nModifyColumn\nModify column's type to given value\n// change column description's data type to `text` for model `User`\ndb.Model(&User{}).ModifyColumn(\"description\", \"text\")\n\nDropColumn\n// Drop column description from model `User`\ndb.Model(&User{}).DropColumn(\"description\")\n\nAdd Foreign Key\n// Add foreign key\n// 1st param : foreignkey field\n// 2nd param : destination table(id)\n// 3rd param : ONDELETE\n// 4th param : ONUPDATE\ndb.Model(&User{}).AddForeignKey(\"city_id\", \"cities(id)\", \"RESTRICT\", \"RESTRICT\")\n\nIndexes\n// Add index for columns `name` with given name `idx_user_name`\ndb.Model(&User{}).AddIndex(\"idx_user_name\", \"name\")\n\n// Add index for columns `name`, `age` with given name `idx_user_name_age`\ndb.Model(&User{}).AddIndex(\"idx_user_name_age\", \"name\", \"age\")\n\n// Add unique index\ndb.Model(&User{}).AddUniqueIndex(\"idx_user_name\", \"name\")\n\n// Add unique index for multiple columns\ndb.Model(&User{}).AddUniqueIndex(\"idx_user_name_age\", \"name\", \"age\")\n\n// Remove index\ndb.Model(&User{}).RemoveIndex(\"idx_user_name\")\n\n"},"models.html":{"url":"models.html","title":"Models","keywords":"","body":"Models\n\nModel Definition\ntype User struct {\n    gorm.Model\n    Birthday     time.Time\n    Age          int\n    Name         string  `gorm:\"size:255\"` // Default size for string is 255, reset it with this tag\n    Num          int     `gorm:\"AUTO_INCREMENT\"`\n\n    CreditCard        CreditCard      // One-To-One relationship (has one - use CreditCard's UserID as foreign key)\n    Emails            []Email         // One-To-Many relationship (has many - use Email's UserID as foreign key)\n\n    BillingAddress    Address         // One-To-One relationship (belongs to - use BillingAddressID as foreign key)\n    BillingAddressID  sql.NullInt64\n\n    ShippingAddress   Address         // One-To-One relationship (belongs to - use ShippingAddressID as foreign key)\n    ShippingAddressID int\n\n    IgnoreMe          int `gorm:\"-\"`   // Ignore this field\n    Languages         []Language `gorm:\"many2many:user_languages;\"` // Many-To-Many relationship, 'user_languages' is join table\n}\n\ntype Email struct {\n    ID      int\n    UserID  int     `gorm:\"index\"` // Foreign key (belongs to), tag `index` will create index for this column\n    Email   string  `gorm:\"type:varchar(100);unique_index\"` // `type` set sql type, `unique_index` will create unique index for this column\n    Subscribed bool\n}\n\ntype Address struct {\n    ID       int\n    Address1 string         `gorm:\"not null;unique\"` // Set field as not nullable and unique\n    Address2 string         `gorm:\"type:varchar(100);unique\"`\n    Post     sql.NullString `gorm:\"not null\"`\n}\n\ntype Language struct {\n    ID   int\n    Name string `gorm:\"index:idx_name_code\"` // Create index with name, and will create combined index if find other fields defined same name\n    Code string `gorm:\"index:idx_name_code\"` // `unique_index` also works\n}\n\ntype CreditCard struct {\n    gorm.Model\n    UserID  uint\n    Number  string\n}\n\nConventions\ngorm.Model struct\nBase model definition gorm.Model, including fields ID, CreatedAt, UpdatedAt, DeletedAt, you could embed it in your model, or only write those fields you want\n// Base Model's definition\ntype Model struct {\n  ID        uint `gorm:\"primary_key\"`\n  CreatedAt time.Time\n  UpdatedAt time.Time\n  DeletedAt *time.Time\n}\n\n// Add fields `ID`, `CreatedAt`, `UpdatedAt`, `DeletedAt`\ntype User struct {\n  gorm.Model\n  Name string\n}\n\n// Only need field `ID`, `CreatedAt`\ntype User struct {\n  ID        uint\n  CreatedAt time.Time\n  Name      string\n}\n\nTable name is the pluralized version of struct name\ntype User struct {} // default table name is `users`\n\n// set User's table name to be `profiles`\nfunc (User) TableName() string {\n  return \"profiles\"\n}\n\nfunc (u User) TableName() string {\n    if u.Role == \"admin\" {\n        return \"admin_users\"\n    } else {\n        return \"users\"\n    }\n}\n\n// Disable table name's pluralization globally\ndb.SingularTable(true) // if set this to true, `User`'s default table name will be `user`, table name setted with `TableName` won't be affected\n\nChange default tablenames\nYou can apply any rules on the default table name by defining the DefaultTableNameHandler\ngorm.DefaultTableNameHandler = func (db *gorm.DB, defaultTableName string) string  {\n    return \"prefix_\" + defaultTableName;\n}\nColumn name is the snake case of field's name\ntype User struct {\n  ID uint             // column name will be `id`\n  Name string         // column name will be `name`\n  Birthday time.Time  // column name will be `birthday`\n  CreatedAt time.Time // column name will be `created_at`\n}\n\n// Overriding Column Name\ntype Animal struct {\n    AnimalId    int64     `gorm:\"column:beast_id\"`         // set column name to `beast_id`\n    Birthday    time.Time `gorm:\"column:day_of_the_beast\"` // set column name to `day_of_the_beast`\n    Age         int64     `gorm:\"column:age_of_the_beast\"` // set column name to `age_of_the_beast`\n}\n\nField ID as primary key\ntype User struct {\n  ID   uint  // field named `ID` will be the default primary field\n  Name string\n}\n\n// Set a field to be primary field with tag `primary_key`\ntype Animal struct {\n  AnimalId int64 `gorm:\"primary_key\"` // set AnimalId to be primary key\n  Name     string\n  Age      int64\n}\n\nField CreatedAt used to store record's created time\nCreate records having CreatedAt field will set it to current time.\ndb.Create(&user) // will set `CreatedAt` to current time\n\n// To change its value, you could use `Update`\ndb.Model(&user).Update(\"CreatedAt\", time.Now())\n\nUse UpdatedAt used to store record's updated time\nSave records having UpdatedAt field will set it to current time.\n// Whenever one or more `user` fields are edited using Save() or Update(), `UpdatedAt` will be set to current time\ndb.Save(&user) // will set `UpdatedAt` to current time\ndb.Model(&user).Update(\"name\", \"jinzhu\") // will set `UpdatedAt` to current time\n\nUse DeletedAt to store record's deleted time if field exists\nDelete records having DeletedAt field, it won't be deleted from database, but only set field DeletedAt's value to current time, and the record is not findable when querying, refer Soft Delete\n"},"associations.html":{"url":"associations.html","title":"Associations","keywords":"","body":"Associations\n\nBelongs To\n// `User` belongs to `Profile`, `ProfileID` is the foreign key\ntype User struct {\n  gorm.Model\n  Profile   Profile\n  ProfileID int\n}\n\ntype Profile struct {\n  gorm.Model\n  Name string\n}\n\ndb.Model(&user).Related(&profile)\n//// SELECT * FROM profiles WHERE id = 111; // 111 is user's foreign key ProfileID\n\nSpecify Foreign Key\ntype Profile struct {\n    gorm.Model\n    Name string\n}\n\ntype User struct {\n    gorm.Model\n    Profile      Profile `gorm:\"ForeignKey:ProfileRefer\"` // use ProfileRefer as foreign key\n    ProfileRefer uint\n}\n\nSpecify Foreign Key & Association Key\ntype Profile struct {\n    gorm.Model\n    Refer int\n    Name  string\n}\n\ntype User struct {\n    gorm.Model\n    Profile   Profile `gorm:\"ForeignKey:ProfileID;AssociationForeignKey:Refer\"`\n    ProfileID int\n}\n\nHas One\n// User has one CreditCard, UserID is the foreign key\ntype User struct {\n    gorm.Model\n    CreditCard   CreditCard\n}\n\ntype CreditCard struct {\n    gorm.Model\n    UserID   uint\n    Number   string\n}\n\nvar card CreditCard\ndb.Model(&user).Related(&card, \"CreditCard\")\n//// SELECT * FROM credit_cards WHERE user_id = 123; // 123 is user's primary key\n// CreditCard is user's field name, it means get user's CreditCard relations and fill it into variable card\n// If the field name is same as the variable's type name, like above example, it could be omitted, like:\ndb.Model(&user).Related(&card)\n\nSpecify Foreign Key\ntype Profile struct {\n  gorm.Model\n  Name      string\n  UserRefer uint\n}\n\ntype User struct {\n  gorm.Model\n  Profile Profile `gorm:\"ForeignKey:UserRefer\"`\n}\n\nSpecify Foreign Key & Association Key\ntype Profile struct {\n  gorm.Model\n  Name   string\n  UserID uint\n}\n\ntype User struct {\n  gorm.Model\n  Refer   uint\n  Profile Profile `gorm:\"ForeignKey:UserID;AssociationForeignKey:Refer\"`\n}\n\nHas Many\n// User has many emails, UserID is the foreign key\ntype User struct {\n    gorm.Model\n    Emails   []Email\n}\n\ntype Email struct {\n    gorm.Model\n    Email   string\n    UserID  uint\n}\n\ndb.Model(&user).Related(&emails)\n//// SELECT * FROM emails WHERE user_id = 111; // 111 is user's primary key\n\nSpecify Foreign Key\ntype Profile struct {\n  gorm.Model\n  Name      string\n  UserRefer uint\n}\n\ntype User struct {\n  gorm.Model\n  Profiles []Profile `gorm:\"ForeignKey:UserRefer\"`\n}\n\nSpecify Foreign Key & Association Key\ntype Profile struct {\n  gorm.Model\n  Name   string\n  UserID uint\n}\n\ntype User struct {\n  gorm.Model\n  Refer   uint\n  Profiles []Profile `gorm:\"ForeignKey:UserID;AssociationForeignKey:Refer\"`\n}\n\nMany To Many\n// User has and belongs to many languages, use `user_languages` as join table\ntype User struct {\n    gorm.Model\n    Languages         []Language `gorm:\"many2many:user_languages;\"`\n}\n\ntype Language struct {\n    gorm.Model\n    Name string\n}\n\ndb.Model(&user).Related(&languages, \"Languages\")\n//// SELECT * FROM \"languages\" INNER JOIN \"user_languages\" ON \"user_languages\".\"language_id\" = \"languages\".\"id\" WHERE \"user_languages\".\"user_id\" = 111\n\n*With back-reference :\n// User has and belongs to many languages, use `user_languages` as join table\n// Make sure the two models are in different files\ntype User struct {\n    gorm.Model\n    Languages         []Language `gorm:\"many2many:user_languages;\"`\n}\n\ntype Language struct {\n    gorm.Model\n    Name string\n    Users               []User     `gorm:\"many2many:user_languages;\"`\n}\n\ndb.Model(&language).Related(&users)\n//// SELECT * FROM \"users\" INNER JOIN \"user_languages\" ON \"user_languages\".\"user_id\" = \"users\".\"id\" WHERE  (\"user_languages\".\"language_id\" IN ('111'))\n\nSpecify Foreign Key & Association Key\ntype CustomizePerson struct {\n  IdPerson string             `gorm:\"primary_key:true\"`\n  Accounts []CustomizeAccount `gorm:\"many2many:PersonAccount;AssociationForeignKey:idAccount;ForeignKey:idPerson\"`\n}\n\ntype CustomizeAccount struct {\n  IdAccount string `gorm:\"primary_key:true\"`\n  Name      string\n}\n\nPolymorphism\nSupports polymorphic has-many and has-one associations.\n  type Cat struct {\n    Id    int\n    Name  string\n    Toy   Toy `gorm:\"polymorphic:Owner;\"`\n  }\n\n  type Dog struct {\n    Id   int\n    Name string\n    Toy  Toy `gorm:\"polymorphic:Owner;\"`\n  }\n\n  type Toy struct {\n    Id        int\n    Name      string\n    OwnerId   int\n    OwnerType string\n  }\n\nNote: polymorphic belongs-to and many-to-many are explicitly NOT supported, and will throw errors.\nAssociation Mode\nAssociation Mode contains some helper methods to handle relationship things easily.\n// Start Association Mode\nvar user User\ndb.Model(&user).Association(\"Languages\")\n// `user` is the source, it need to be a valid record (contains primary key)\n// `Languages` is source's field name for a relationship.\n// If those conditions not matched, will return an error, check it with:\n// db.Model(&user).Association(\"Languages\").Error\n\n\n// Query - Find out all related associations\ndb.Model(&user).Association(\"Languages\").Find(&languages)\n\n\n// Append - Append new associations for many2many, has_many, will replace current association for has_one, belongs_to\ndb.Model(&user).Association(\"Languages\").Append([]Language{languageZH, languageEN})\ndb.Model(&user).Association(\"Languages\").Append(Language{Name: \"DE\"})\n\n\n// Delete - Remove relationship between source & passed arguments, won't delete those arguments\ndb.Model(&user).Association(\"Languages\").Delete([]Language{languageZH, languageEN})\ndb.Model(&user).Association(\"Languages\").Delete(languageZH, languageEN)\n\n\n// Replace - Replace current associations with new one\ndb.Model(&user).Association(\"Languages\").Replace([]Language{languageZH, languageEN})\ndb.Model(&user).Association(\"Languages\").Replace(Language{Name: \"DE\"}, languageEN)\n\n\n// Count - Return the count of current associations\ndb.Model(&user).Association(\"Languages\").Count()\n\n\n// Clear - Remove relationship between source & current associations, won't delete those associations\ndb.Model(&user).Association(\"Languages\").Clear()\n\n"},"crud.html":{"url":"crud.html","title":"CRUD: Reading and Writing Data","keywords":"","body":"CRUD: Reading and Writing Data\n\nCreate\nCreate Record\nuser := User{Name: \"Jinzhu\", Age: 18, Birthday: time.Now()}\n\ndb.NewRecord(user) // => returns `true` as primary key is blank\n\ndb.Create(&user)\n\ndb.NewRecord(user) // => return `false` after `user` created\n\nDefault Values\nYou could define default value in the gorm tag, then the inserting SQL will ignore these fields that has default value and its value is blank, and after insert the record into database, gorm will load those fields's value from database.\ntype Animal struct {\n    ID   int64\n    Name string `gorm:\"default:'galeone'\"`\n    Age  int64\n}\n\nvar animal = Animal{Age: 99, Name: \"\"}\ndb.Create(&animal)\n// INSERT INTO animals(\"age\") values('99');\n// SELECT name from animals WHERE ID=111; // the returning primary key is 111\n// animal.Name => 'galeone'\n\nSetting Primary Key In Callbacks\nIf you want to set primary field's value in BeforeCreate callback, you could use scope.SetColumn, for example:\nfunc (user *User) BeforeCreate(scope *gorm.Scope) error {\n  scope.SetColumn(\"ID\", uuid.New())\n  return nil\n}\n\nExtra Creating option\n// Add extra SQL option for inserting SQL\ndb.Set(\"gorm:insert_option\", \"ON CONFLICT\").Create(&product)\n// INSERT INTO products (name, code) VALUES (\"name\", \"code\") ON CONFLICT;\n\nQuery\n// Get first record, order by primary key\ndb.First(&user)\n//// SELECT * FROM users ORDER BY id LIMIT 1;\n\n// Get last record, order by primary key\ndb.Last(&user)\n//// SELECT * FROM users ORDER BY id DESC LIMIT 1;\n\n// Get all records\ndb.Find(&users)\n//// SELECT * FROM users;\n\n// Get record with primary key (only works for integer primary key)\ndb.First(&user, 10)\n//// SELECT * FROM users WHERE id = 10;\n\nQuery With Where (Plain SQL)\n// Get first matched record\ndb.Where(\"name = ?\", \"jinzhu\").First(&user)\n//// SELECT * FROM users WHERE name = 'jinzhu' limit 1;\n\n// Get all matched records\ndb.Where(\"name = ?\", \"jinzhu\").Find(&users)\n//// SELECT * FROM users WHERE name = 'jinzhu';\n\ndb.Where(\"name <> ?\", \"jinzhu\").Find(&users)\n\n// IN\ndb.Where(\"name in (?)\", []string{\"jinzhu\", \"jinzhu 2\"}).Find(&users)\n\n// LIKE\ndb.Where(\"name LIKE ?\", \"%jin%\").Find(&users)\n\n// AND\ndb.Where(\"name = ? AND age >= ?\", \"jinzhu\", \"22\").Find(&users)\n\n// Time\ndb.Where(\"updated_at > ?\", lastWeek).Find(&users)\n\ndb.Where(\"created_at BETWEEN ? AND ?\", lastWeek, today).Find(&users)\n\nQuery With Where (Struct & Map)\nNOTE When query with struct, GORM will only query with those fields has value\n// Struct\ndb.Where(&User{Name: \"jinzhu\", Age: 20}).First(&user)\n//// SELECT * FROM users WHERE name = \"jinzhu\" AND age = 20 LIMIT 1;\n\n// Map\ndb.Where(map[string]interface{}{\"name\": \"jinzhu\", \"age\": 20}).Find(&users)\n//// SELECT * FROM users WHERE name = \"jinzhu\" AND age = 20;\n\n// Slice of primary keys\ndb.Where([]int64{20, 21, 22}).Find(&users)\n//// SELECT * FROM users WHERE id IN (20, 21, 22);\n\nQuery With Not\ndb.Not(\"name\", \"jinzhu\").First(&user)\n//// SELECT * FROM users WHERE name <> \"jinzhu\" LIMIT 1;\n\n// Not In\ndb.Not(\"name\", []string{\"jinzhu\", \"jinzhu 2\"}).Find(&users)\n//// SELECT * FROM users WHERE name NOT IN (\"jinzhu\", \"jinzhu 2\");\n\n// Not In slice of primary keys\ndb.Not([]int64{1,2,3}).First(&user)\n//// SELECT * FROM users WHERE id NOT IN (1,2,3);\n\ndb.Not([]int64{}).First(&user)\n//// SELECT * FROM users;\n\n// Plain SQL\ndb.Not(\"name = ?\", \"jinzhu\").First(&user)\n//// SELECT * FROM users WHERE NOT(name = \"jinzhu\");\n\n// Struct\ndb.Not(User{Name: \"jinzhu\"}).First(&user)\n//// SELECT * FROM users WHERE name <> \"jinzhu\";\n\nQuery With Inline Condition\nNOTE When query with primary key, you should carefully check the value you passed is a valid primary key, to avoid SQL injection\n// Get by primary key (only works for integer primary key)\ndb.First(&user, 23)\n//// SELECT * FROM users WHERE id = 23 LIMIT 1;\n// Get by primary key if it were a non-integer type\ndb.First(&user, \"id = ?\", \"string_primary_key\")\n//// SELECT * FROM users WHERE id = 'string_primary_key' LIMIT 1;\n\n// Plain SQL\ndb.Find(&user, \"name = ?\", \"jinzhu\")\n//// SELECT * FROM users WHERE name = \"jinzhu\";\n\ndb.Find(&users, \"name <> ? AND age > ?\", \"jinzhu\", 20)\n//// SELECT * FROM users WHERE name <> \"jinzhu\" AND age > 20;\n\n// Struct\ndb.Find(&users, User{Age: 20})\n//// SELECT * FROM users WHERE age = 20;\n\n// Map\ndb.Find(&users, map[string]interface{}{\"age\": 20})\n//// SELECT * FROM users WHERE age = 20;\n\nQuery With Or\ndb.Where(\"role = ?\", \"admin\").Or(\"role = ?\", \"super_admin\").Find(&users)\n//// SELECT * FROM users WHERE role = 'admin' OR role = 'super_admin';\n\n// Struct\ndb.Where(\"name = 'jinzhu'\").Or(User{Name: \"jinzhu 2\"}).Find(&users)\n//// SELECT * FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2';\n\n// Map\ndb.Where(\"name = 'jinzhu'\").Or(map[string]interface{}{\"name\": \"jinzhu 2\"}).Find(&users)\n\nQuery Chains\nGorm has a chainable API, you could use it like this\ndb.Where(\"name <> ?\",\"jinzhu\").Where(\"age >= ? and role <> ?\",20,\"admin\").Find(&users)\n//// SELECT * FROM users WHERE name <> 'jinzhu' AND age >= 20 AND role <> 'admin';\n\ndb.Where(\"role = ?\", \"admin\").Or(\"role = ?\", \"super_admin\").Not(\"name = ?\", \"jinzhu\").Find(&users)\n\nSubQuery\ndb.Where(\"amount > ?\", DB.Table(\"orders\").Select(\"AVG(amount)\").Where(\"state = ?\", \"paid\").QueryExpr()).Find(&orders)\n// SELECT * FROM \"orders\"  WHERE \"orders\".\"deleted_at\" IS NULL AND (amount > (SELECT AVG(amount) FROM \"orders\"  WHERE (state = 'paid')));\n\nExtra Querying option\n// Add extra SQL option for selecting SQL\ndb.Set(\"gorm:query_option\", \"FOR UPDATE\").First(&user, 10)\n//// SELECT * FROM users WHERE id = 10 FOR UPDATE;\n\nFirstOrInit\nGet first matched record, or initalize a new one with given conditions (only works with struct, map conditions)\n// Unfound\ndb.FirstOrInit(&user, User{Name: \"non_existing\"})\n//// user -> User{Name: \"non_existing\"}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).FirstOrInit(&user)\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 20}\ndb.FirstOrInit(&user, map[string]interface{}{\"name\": \"jinzhu\"})\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 20}\n\nAttrs\nInitalize struct with argument if record haven't been found\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Attrs(User{Age: 20}).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = 'non_existing';\n//// user -> User{Name: \"non_existing\", Age: 20}\n\ndb.Where(User{Name: \"non_existing\"}).Attrs(\"age\", 20).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = 'non_existing';\n//// user -> User{Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).Attrs(User{Age: 30}).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = jinzhu';\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 20}\n\nAssign\nAssign argument to results regardless it is found or not\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Assign(User{Age: 20}).FirstOrInit(&user)\n//// user -> User{Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).Assign(User{Age: 30}).FirstOrInit(&user)\n//// SELECT * FROM USERS WHERE name = jinzhu';\n//// user -> User{Id: 111, Name: \"Jinzhu\", Age: 30}\n\nFirstOrCreate\nGet first matched record, or create a new one with given conditions (only works with struct, map conditions)\n// Unfound\ndb.FirstOrCreate(&user, User{Name: \"non_existing\"})\n//// INSERT INTO \"users\" (name) VALUES (\"non_existing\");\n//// user -> User{Id: 112, Name: \"non_existing\"}\n\n// Found\ndb.Where(User{Name: \"Jinzhu\"}).FirstOrCreate(&user)\n//// user -> User{Id: 111, Name: \"Jinzhu\"}\n\nAttrs\nAssgin struct with argument if record haven't been found\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Attrs(User{Age: 20}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'non_existing';\n//// INSERT INTO \"users\" (name, age) VALUES (\"non_existing\", 20);\n//// user -> User{Id: 112, Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"jinzhu\"}).Attrs(User{Age: 30}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'jinzhu';\n//// user -> User{Id: 111, Name: \"jinzhu\", Age: 20}\n\nAssign\nAssign it to the record regardless it is found or not, and save back to database.\n// Unfound\ndb.Where(User{Name: \"non_existing\"}).Assign(User{Age: 20}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'non_existing';\n//// INSERT INTO \"users\" (name, age) VALUES (\"non_existing\", 20);\n//// user -> User{Id: 112, Name: \"non_existing\", Age: 20}\n\n// Found\ndb.Where(User{Name: \"jinzhu\"}).Assign(User{Age: 30}).FirstOrCreate(&user)\n//// SELECT * FROM users WHERE name = 'jinzhu';\n//// UPDATE users SET age=30 WHERE id = 111;\n//// user -> User{Id: 111, Name: \"jinzhu\", Age: 30}\n\nSelect\nSpecify fields that you want to retrieve from database, by default, will select all fields;\ndb.Select(\"name, age\").Find(&users)\n//// SELECT name, age FROM users;\n\ndb.Select([]string{\"name\", \"age\"}).Find(&users)\n//// SELECT name, age FROM users;\n\ndb.Table(\"users\").Select(\"COALESCE(age,?)\", 42).Rows()\n//// SELECT COALESCE(age,'42') FROM users;\n\nOrder\nSpecify order when retrieve records from database, set reorder to true to overwrite defined conditions\ndb.Order(\"age desc, name\").Find(&users)\n//// SELECT * FROM users ORDER BY age desc, name;\n\n// Multiple orders\ndb.Order(\"age desc\").Order(\"name\").Find(&users)\n//// SELECT * FROM users ORDER BY age desc, name;\n\n// ReOrder\ndb.Order(\"age desc\").Find(&users1).Order(\"age\", true).Find(&users2)\n//// SELECT * FROM users ORDER BY age desc; (users1)\n//// SELECT * FROM users ORDER BY age; (users2)\n\nLimit\nSpecify the number of records to be retrieved\ndb.Limit(3).Find(&users)\n//// SELECT * FROM users LIMIT 3;\n\n// Cancel limit condition with -1\ndb.Limit(10).Find(&users1).Limit(-1).Find(&users2)\n//// SELECT * FROM users LIMIT 10; (users1)\n//// SELECT * FROM users; (users2)\n\nOffset\nSpecify the number of records to skip before starting to return the records\ndb.Offset(3).Find(&users)\n//// SELECT * FROM users OFFSET 3;\n\n// Cancel offset condition with -1\ndb.Offset(10).Find(&users1).Offset(-1).Find(&users2)\n//// SELECT * FROM users OFFSET 10; (users1)\n//// SELECT * FROM users; (users2)\n\nCount\nGet how many records for a model\ndb.Where(\"name = ?\", \"jinzhu\").Or(\"name = ?\", \"jinzhu 2\").Find(&users).Count(&count)\n//// SELECT * from USERS WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (users)\n//// SELECT count(*) FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (count)\n\ndb.Model(&User{}).Where(\"name = ?\", \"jinzhu\").Count(&count)\n//// SELECT count(*) FROM users WHERE name = 'jinzhu'; (count)\n\ndb.Table(\"deleted_users\").Count(&count)\n//// SELECT count(*) FROM deleted_users;\n\nGroup & Having\nrows, err := db.Table(\"orders\").Select(\"date(created_at) as date, sum(amount) as total\").Group(\"date(created_at)\").Rows()\nfor rows.Next() {\n    ...\n}\n\nrows, err := db.Table(\"orders\").Select(\"date(created_at) as date, sum(amount) as total\").Group(\"date(created_at)\").Having(\"sum(amount) > ?\", 100).Rows()\nfor rows.Next() {\n    ...\n}\n\ntype Result struct {\n    Date  time.Time\n    Total int64\n}\ndb.Table(\"orders\").Select(\"date(created_at) as date, sum(amount) as total\").Group(\"date(created_at)\").Having(\"sum(amount) > ?\", 100).Scan(&results)\n\nJoins\nSpecify Joins conditions\nrows, err := db.Table(\"users\").Select(\"users.name, emails.email\").Joins(\"left join emails on emails.user_id = users.id\").Rows()\nfor rows.Next() {\n    ...\n}\n\ndb.Table(\"users\").Select(\"users.name, emails.email\").Joins(\"left join emails on emails.user_id = users.id\").Scan(&results)\n\n// multiple joins with parameter\ndb.Joins(\"JOIN emails ON emails.user_id = users.id AND emails.email = ?\", \"jinzhu@example.org\").Joins(\"JOIN credit_cards ON credit_cards.user_id = users.id\").Where(\"credit_cards.number = ?\", \"411111111111\").Find(&user)\n\nPluck\nQuery single column from a model as a map, if you want to query multiple columns, you could use Scan\nvar ages []int64\ndb.Find(&users).Pluck(\"age\", &ages)\n\nvar names []string\ndb.Model(&User{}).Pluck(\"name\", &names)\n\ndb.Table(\"deleted_users\").Pluck(\"name\", &names)\n\n// Requesting more than one column? Do it like this:\ndb.Select(\"name, age\").Find(&users)\n\nScan\nScan results into another struct.\ntype Result struct {\n    Name string\n    Age  int\n}\n\nvar result Result\ndb.Table(\"users\").Select(\"name, age\").Where(\"name = ?\", 3).Scan(&result)\n\n// Raw SQL\ndb.Raw(\"SELECT name, age FROM users WHERE name = ?\", 3).Scan(&result)\n\nScopes\nPass current database connection to func(*DB) *DB, which could be used to add conditions dynamically\nfunc AmountGreaterThan1000(db *gorm.DB) *gorm.DB {\n    return db.Where(\"amount > ?\", 1000)\n}\n\nfunc PaidWithCreditCard(db *gorm.DB) *gorm.DB {\n    return db.Where(\"pay_mode_sign = ?\", \"C\")\n}\n\nfunc PaidWithCod(db *gorm.DB) *gorm.DB {\n    return db.Where(\"pay_mode_sign = ?\", \"C\")\n}\n\nfunc OrderStatus(status []string) func (db *gorm.DB) *gorm.DB {\n    return func (db *gorm.DB) *gorm.DB {\n        return db.Scopes(AmountGreaterThan1000).Where(\"status in (?)\", status)\n    }\n}\n\ndb.Scopes(AmountGreaterThan1000, PaidWithCreditCard).Find(&orders)\n// Find all credit card orders and amount greater than 1000\n\ndb.Scopes(AmountGreaterThan1000, PaidWithCod).Find(&orders)\n// Find all COD orders and amount greater than 1000\n\ndb.Scopes(OrderStatus([]string{\"paid\", \"shipped\"})).Find(&orders)\n// Find all paid, shipped orders\n\nSpecifying The Table Name\n// Create `deleted_users` table with struct User's definition\ndb.Table(\"deleted_users\").CreateTable(&User{})\n\nvar deleted_users []User\ndb.Table(\"deleted_users\").Find(&deleted_users)\n//// SELECT * FROM deleted_users;\n\ndb.Table(\"deleted_users\").Where(\"name = ?\", \"jinzhu\").Delete()\n//// DELETE FROM deleted_users WHERE name = 'jinzhu';\n\nPreloading (Eager loading)\ndb.Preload(\"Orders\").Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4);\n\ndb.Preload(\"Orders\", \"state NOT IN (?)\", \"cancelled\").Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4) AND state NOT IN ('cancelled');\n\ndb.Where(\"state = ?\", \"active\").Preload(\"Orders\", \"state NOT IN (?)\", \"cancelled\").Find(&users)\n//// SELECT * FROM users WHERE state = 'active';\n//// SELECT * FROM orders WHERE user_id IN (1,2) AND state NOT IN ('cancelled');\n\ndb.Preload(\"Orders\").Preload(\"Profile\").Preload(\"Role\").Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4); // has many\n//// SELECT * FROM profiles WHERE user_id IN (1,2,3,4); // has one\n//// SELECT * FROM roles WHERE id IN (4,5,6); // belongs to\n\nCustom Preloading SQL\nYou could custom preloading SQL by passing in func(db *gorm.DB) *gorm.DB (same type as the one used for Scopes), for example:\ndb.Preload(\"Orders\", func(db *gorm.DB) *gorm.DB {\n    return db.Order(\"orders.amount DESC\")\n}).Find(&users)\n//// SELECT * FROM users;\n//// SELECT * FROM orders WHERE user_id IN (1,2,3,4) order by orders.amount DESC;\n\nNested Preloading\ndb.Preload(\"Orders.OrderItems\").Find(&users)\ndb.Preload(\"Orders\", \"state = ?\", \"paid\").Preload(\"Orders.OrderItems\").Find(&users)\n\nUpdate\nUpdate All Fields\nSave will include all fields when perform the Updating SQL, even it is not changed\ndb.First(&user)\n\nuser.Name = \"jinzhu 2\"\nuser.Age = 100\ndb.Save(&user)\n\n//// UPDATE users SET name='jinzhu 2', age=100, birthday='2016-01-01', updated_at = '2013-11-17 21:34:10' WHERE id=111;\n\nUpdate Changed Fields\nIf you only want to update changed Fields, you could use Update, Updates\n// Update single attribute if it is changed\ndb.Model(&user).Update(\"name\", \"hello\")\n//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111;\n\n// Update single attribute with combined conditions\ndb.Model(&user).Where(\"active = ?\", true).Update(\"name\", \"hello\")\n//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111 AND active=true;\n\n// Update multiple attributes with `map`, will only update those changed fields\ndb.Model(&user).Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18, \"actived\": false})\n//// UPDATE users SET name='hello', age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;\n\n// Update multiple attributes with `struct`, will only update those changed & non blank fields\ndb.Model(&user).Updates(User{Name: \"hello\", Age: 18})\n//// UPDATE users SET name='hello', age=18, updated_at = '2013-11-17 21:34:10' WHERE id = 111;\n\n// WARNING when update with struct, GORM will only update those fields that with non blank value\n// For below Update, nothing will be updated as \"\", 0, false are blank values of their types\ndb.Model(&user).Updates(User{Name: \"\", Age: 0, Actived: false})\n\nUpdate Selected Fields\nIf you only want to update or ignore some fields when updating, you could use Select, Omit\ndb.Model(&user).Select(\"name\").Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18, \"actived\": false})\n//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111;\n\ndb.Model(&user).Omit(\"name\").Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18, \"actived\": false})\n//// UPDATE users SET age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;\n\nUpdate Changed Fields Without Callbacks\nAbove updating operations will perform the model's BeforeUpdate, AfterUpdate method, update its UpdatedAt timestamp, save its Associations when updaing, if you don't want to call them, you could use UpdateColumn, UpdateColumns\n// Update single attribute, similar with `Update`\ndb.Model(&user).UpdateColumn(\"name\", \"hello\")\n//// UPDATE users SET name='hello' WHERE id = 111;\n\n// Update multiple attributes, similar with `Updates`\ndb.Model(&user).UpdateColumns(User{Name: \"hello\", Age: 18})\n//// UPDATE users SET name='hello', age=18 WHERE id = 111;\n\nBatch Updates\nCallbacks won't run when do batch updates\ndb.Table(\"users\").Where(\"id IN (?)\", []int{10, 11}).Updates(map[string]interface{}{\"name\": \"hello\", \"age\": 18})\n//// UPDATE users SET name='hello', age=18 WHERE id IN (10, 11);\n\n// Update with struct only works with none zero values, or use map[string]interface{}\ndb.Model(User{}).Updates(User{Name: \"hello\", Age: 18})\n//// UPDATE users SET name='hello', age=18;\n\n// Get updated records count with `RowsAffected`\ndb.Model(User{}).Updates(User{Name: \"hello\", Age: 18}).RowsAffected\n\nUpdate with SQL Expression\nDB.Model(&product).Update(\"price\", gorm.Expr(\"price * ? + ?\", 2, 100))\n//// UPDATE \"products\" SET \"price\" = price * '2' + '100', \"updated_at\" = '2013-11-17 21:34:10' WHERE \"id\" = '2';\n\nDB.Model(&product).Updates(map[string]interface{}{\"price\": gorm.Expr(\"price * ? + ?\", 2, 100)})\n//// UPDATE \"products\" SET \"price\" = price * '2' + '100', \"updated_at\" = '2013-11-17 21:34:10' WHERE \"id\" = '2';\n\nDB.Model(&product).UpdateColumn(\"quantity\", gorm.Expr(\"quantity - ?\", 1))\n//// UPDATE \"products\" SET \"quantity\" = quantity - 1 WHERE \"id\" = '2';\n\nDB.Model(&product).Where(\"quantity > 1\").UpdateColumn(\"quantity\", gorm.Expr(\"quantity - ?\", 1))\n//// UPDATE \"products\" SET \"quantity\" = quantity - 1 WHERE \"id\" = '2' AND quantity > 1;\n\nChange Updating Values In Callbacks\nIf you want to change updating values in callbacks using BeforeUpdate, BeforeSave, you could use scope.SetColumn, for example:\nfunc (user *User) BeforeSave(scope *gorm.Scope) (err error) {\n  if pw, err := bcrypt.GenerateFromPassword(user.Password, 0); err == nil {\n    scope.SetColumn(\"EncryptedPassword\", pw)\n  }\n}\n\nExtra Updating option\n// Add extra SQL option for updating SQL\ndb.Model(&user).Set(\"gorm:update_option\", \"OPTION (OPTIMIZE FOR UNKNOWN)\").Update(\"name, \"hello\")\n//// UPDATE users SET name='hello', updated_at = '2013-11-17 21:34:10' WHERE id=111 OPTION (OPTIMIZE FOR UNKNOWN);\n\nDelete\nWARNING When delete a record, you need to ensure it's primary field has value, and GORM will use the primary key to delete the record, if primary field's blank, GORM will delete all records for the model\n// Delete an existing record\ndb.Delete(&email)\n//// DELETE from emails where id=10;\n\n// Add extra SQL option for deleting SQL\ndb.Set(\"gorm:delete_option\", \"OPTION (OPTIMIZE FOR UNKNOWN)\").Delete(&email)\n//// DELETE from emails where id=10 OPTION (OPTIMIZE FOR UNKNOWN);\n\nBatch Delete\nDelete all matched records\ndb.Where(\"email LIKE ?\", \"%jinzhu%\").Delete(Email{})\n//// DELETE from emails where email LIKE \"%jinzhu%\";\n\ndb.Delete(Email{}, \"email LIKE ?\", \"%jinzhu%\")\n//// DELETE from emails where email LIKE \"%jinzhu%\";\n\nSoft Delete\nIf model has DeletedAt field, it will get soft delete ability automatically! then it won't be deleted from database permanently when call Delete, but only set field DeletedAt's value to current time\ndb.Delete(&user)\n//// UPDATE users SET deleted_at=\"2013-10-29 10:23\" WHERE id = 111;\n\n// Batch Delete\ndb.Where(\"age = ?\", 20).Delete(&User{})\n//// UPDATE users SET deleted_at=\"2013-10-29 10:23\" WHERE age = 20;\n\n// Soft deleted records will be ignored when query them\ndb.Where(\"age = 20\").Find(&user)\n//// SELECT * FROM users WHERE age = 20 AND deleted_at IS NULL;\n\n// Find soft deleted records with Unscoped\ndb.Unscoped().Where(\"age = 20\").Find(&users)\n//// SELECT * FROM users WHERE age = 20;\n\n// Delete record permanently with Unscoped\ndb.Unscoped().Delete(&order)\n//// DELETE FROM orders WHERE id=10;\n\nAssociations\nBy default when creating/updating a record, GORM will save its associations, if the association has primary key, GORM will call Update to save it, otherwise it will be created.\nuser := User{\n    Name:            \"jinzhu\",\n    BillingAddress:  Address{Address1: \"Billing Address - Address 1\"},\n    ShippingAddress: Address{Address1: \"Shipping Address - Address 1\"},\n    Emails:          []Email{\n                                        {Email: \"jinzhu@example.com\"},\n                                        {Email: \"jinzhu-2@example@example.com\"},\n                   },\n    Languages:       []Language{\n                     {Name: \"ZH\"},\n                     {Name: \"EN\"},\n                   },\n}\n\ndb.Create(&user)\n//// BEGIN TRANSACTION;\n//// INSERT INTO \"addresses\" (address1) VALUES (\"Billing Address - Address 1\");\n//// INSERT INTO \"addresses\" (address1) VALUES (\"Shipping Address - Address 1\");\n//// INSERT INTO \"users\" (name,billing_address_id,shipping_address_id) VALUES (\"jinzhu\", 1, 2);\n//// INSERT INTO \"emails\" (user_id,email) VALUES (111, \"jinzhu@example.com\");\n//// INSERT INTO \"emails\" (user_id,email) VALUES (111, \"jinzhu-2@example.com\");\n//// INSERT INTO \"languages\" (\"name\") VALUES ('ZH');\n//// INSERT INTO user_languages (\"user_id\",\"language_id\") VALUES (111, 1);\n//// INSERT INTO \"languages\" (\"name\") VALUES ('EN');\n//// INSERT INTO user_languages (\"user_id\",\"language_id\") VALUES (111, 2);\n//// COMMIT;\n\ndb.Save(&user)\n\nRefer Associations for more details\nSkip Save Associations when creating/updating\nBy default when saving an record, GORM will save its associations also, you could skip it by set gorm:save_associations to false\ndb.Set(\"gorm:save_associations\", false).Create(&user)\n\ndb.Set(\"gorm:save_associations\", false).Save(&user)\n\nSkip Save Associations by Tag\nYou could use Tag to config your struct to never save an association when creating/updating\ntype User struct {\n  gorm.Model\n  Name      string\n  CompanyID uint\n  Company   Company `gorm:\"save_associations:false\"`\n}\n\ntype Company struct {\n  gorm.Model\n  Name string\n}\n\n"},"callbacks.html":{"url":"callbacks.html","title":"Callbacks","keywords":"","body":"Callbacks\n\nYou could define callback methods to pointer of model struct, it will be called when creating, updating, querying, deleting, if any callback returns an error, gorm will stop future operations and rollback all changes.\nCreating An Object\nAvailable Callbacks for creating\n// begin transaction\nBeforeSave\nBeforeCreate\n// save before associations\n// update timestamp `CreatedAt`, `UpdatedAt`\n// save self\n// reload fields that have default value and its value is blank\n// save after associations\nAfterCreate\nAfterSave\n// commit or rollback transaction\n\nUpdating An Object\nAvailable Callbacks for updating\n// begin transaction\nBeforeSave\nBeforeUpdate\n// save before associations\n// update timestamp `UpdatedAt`\n// save self\n// save after associations\nAfterUpdate\nAfterSave\n// commit or rollback transaction\n\nDeleting An Object\nAvailable Callbacks for deleting\n// begin transaction\nBeforeDelete\n// delete self\nAfterDelete\n// commit or rollback transaction\n\nQuerying An Object\nAvailable Callbacks for querying\n// load data from database\n// Preloading (edger loading)\nAfterFind\n\nCallback Examples\nfunc (u *User) BeforeUpdate() (err error) {\n    if u.readonly() {\n        err = errors.New(\"read only user\")\n    }\n    return\n}\n\n// Rollback the insertion if user's id greater than 1000\nfunc (u *User) AfterCreate() (err error) {\n    if (u.Id > 1000) {\n        err = errors.New(\"user id is already greater than 1000\")\n    }\n    return\n}\n\nSave/Delete operations in gorm are running in transactions, so changes made in that transaction are not visible unless it is commited.\nIf you want to use those changes in your callbacks, you need to run your SQL in the same transaction. So you need to pass current transaction to callbacks like this:\nfunc (u *User) AfterCreate(tx *gorm.DB) (err error) {\n    tx.Model(u).Update(\"role\", \"admin\")\n    return\n}\n\nfunc (u *User) AfterCreate(scope *gorm.Scope) (err error) {\n  scope.DB().Model(u).Update(\"role\", \"admin\")\n    return\n}\n\n"},"advanced.html":{"url":"advanced.html","title":"Advanced Usage","keywords":"","body":"Advanced Usage\n\nError Handling\nAfter perform any operations, if there are any error happened, GORM will set it to *DB's Error field\nif err := db.Where(\"name = ?\", \"jinzhu\").First(&user).Error; err != nil {\n    // error handling...\n}\n\n// If there are more than one error happened, get all of them with `GetErrors`, it returns `[]error`\ndb.First(&user).Limit(10).Find(&users).GetErrors()\n\n// Check if returns RecordNotFound error\ndb.Where(\"name = ?\", \"hello world\").First(&user).RecordNotFound()\n\nif db.Model(&user).Related(&credit_card).RecordNotFound() {\n    // no credit card found handling\n}\n\nTransactions\nTo perform a set of operations within a transaction, the general flow is as below.\n// begin a transaction\ntx := db.Begin()\n\n// do some database operations in the transaction (use 'tx' from this point, not 'db')\ntx.Create(...)\n\n// ...\n\n// rollback the transaction in case of error\ntx.Rollback()\n\n// Or commit the transaction\ntx.Commit()\n\nA Specific Example\nfunc CreateAnimals(db *gorm.DB) err {\n  tx := db.Begin()\n  // Note the use of tx as the database handle once you are within a transaction\n\n  if err := tx.Create(&Animal{Name: \"Giraffe\"}).Error; err != nil {\n     tx.Rollback()\n     return err\n  }\n\n  if err := tx.Create(&Animal{Name: \"Lion\"}).Error; err != nil {\n     tx.Rollback()\n     return err\n  }\n\n  tx.Commit()\n  return nil\n}\n\nSQL Builder\nRun Raw SQL\nRun Raw SQL\ndb.Exec(\"DROP TABLE users;\")\ndb.Exec(\"UPDATE orders SET shipped_at=? WHERE id IN (?)\", time.Now(), []int64{11,22,33})\n\n// Scan\ntype Result struct {\n    Name string\n    Age  int\n}\n\nvar result Result\ndb.Raw(\"SELECT name, age FROM users WHERE name = ?\", 3).Scan(&result)\n\nsql.Row & sql.Rows\nGet query result as *sql.Row or *sql.Rows\nrow := db.Table(\"users\").Where(\"name = ?\", \"jinzhu\").Select(\"name, age\").Row() // (*sql.Row)\nrow.Scan(&name, &age)\n\nrows, err := db.Model(&User{}).Where(\"name = ?\", \"jinzhu\").Select(\"name, age, email\").Rows() // (*sql.Rows, error)\ndefer rows.Close()\nfor rows.Next() {\n    ...\n    rows.Scan(&name, &age, &email)\n    ...\n}\n\n// Raw SQL\nrows, err := db.Raw(\"select name, age, email from users where name = ?\", \"jinzhu\").Rows() // (*sql.Rows, error)\ndefer rows.Close()\nfor rows.Next() {\n    ...\n    rows.Scan(&name, &age, &email)\n    ...\n}\n\nScan sql.Rows In Iteration\nrows, err := db.Model(&User{}).Where(\"name = ?\", \"jinzhu\").Select(\"name, age, email\").Rows() // (*sql.Rows, error)\ndefer rows.Close()\n\nfor rows.Next() {\n  var user User\n  db.ScanRows(rows, &user)\n  // do something\n}\n\nGeneric database interface sql.DB\nGet generic database interface *sql.DB from *gorm.DB connection\n// Get generic database object `*sql.DB` to use its functions\ndb.DB()\n\n// Ping\ndb.DB().Ping()\n\nConnection Pool\ndb.DB().SetMaxIdleConns(10)\ndb.DB().SetMaxOpenConns(100)\n\nComposite Primary Key\nSet multiple fields as primary key to enable composite primary key\ntype Product struct {\n    ID           string `gorm:\"primary_key\"`\n    LanguageCode string `gorm:\"primary_key\"`\n}\n\nLogger\nGorm has built-in logger support, by default, it will print happened errors\n// Enable Logger, show detailed log\ndb.LogMode(true)\n\n// Disable Logger, don't show any log\ndb.LogMode(false)\n\n// Debug a single operation, show detailed log for this operation\ndb.Debug().Where(\"name = ?\", \"jinzhu\").First(&User{})\n\nCustomize Logger\nRefer GORM's default logger for how to customize it https://github.com/jinzhu/gorm/blob/master/logger.go\ndb.SetLogger(gorm.Logger{revel.TRACE})\ndb.SetLogger(log.New(os.Stdout, \"\\r\\n\", 0))\n\n"},"development.html":{"url":"development.html","title":"Development","keywords":"","body":"Development\n\nArchitecture\nGorm use chainable API, *gorm.DB is the bridge of chains, for each chain API, it will create a new relation.\ndb, err := gorm.Open(\"postgres\", \"user=gorm dbname=gorm sslmode=disable\")\n\n// create a new relation\ndb = db.Where(\"name = ?\", \"jinzhu\")\n\n// filter even more\nif SomeCondition {\n    db = db.Where(\"age = ?\", 20)\n} else {\n    db = db.Where(\"age = ?\", 30)\n}\nif YetAnotherCondition {\n    db = db.Where(\"active = ?\", 1)\n}\n\nWhen we start to perform any operations, GORM will create a new *gorm.Scope instance based on current *gorm.DB\n// perform a querying operation\ndb.First(&user)\n\nAnd based on current operation's type, it will call registered creating, updating, querying, deleting or row_querying callbacks to run the operation.\nFor above example, will call querying callbacks, refer Querying Callbacks\nWrite Plugins\nGORM itself is powered by Callbacks, so you could fully customize GORM as you want\nRegister a new callback\nfunc updateCreated(scope *Scope) {\n    if scope.HasColumn(\"Created\") {\n        scope.SetColumn(\"Created\", NowFunc())\n    }\n}\n\ndb.Callback().Create().Register(\"update_created_at\", updateCreated)\n// register a callback for Create process\nDelete an existing callback\ndb.Callback().Create().Remove(\"gorm:create\")\n// delete callback `gorm:create` from Create callbacks\nReplace an existing callback\ndb.Callback().Create().Replace(\"gorm:create\", newCreateFunction)\n// replace callback `gorm:create` with new function `newCreateFunction` for Create process\nRegister callback orders\ndb.Callback().Create().Before(\"gorm:create\").Register(\"update_created_at\", updateCreated)\ndb.Callback().Create().After(\"gorm:create\").Register(\"update_created_at\", updateCreated)\ndb.Callback().Query().After(\"gorm:query\").Register(\"my_plugin:after_query\", afterQuery)\ndb.Callback().Delete().After(\"gorm:delete\").Register(\"my_plugin:after_delete\", afterDelete)\ndb.Callback().Update().Before(\"gorm:update\").Register(\"my_plugin:before_update\", beforeUpdate)\ndb.Callback().Create().Before(\"gorm:create\").After(\"gorm:before_create\").Register(\"my_plugin:before_create\", beforeCreate)\nPre-Defined Callbacks\nGORM has defiend callbacks to perform its CRUD operations, check them out before start write your plugins\n\nCreate callbacks\n\nUpdate callbacks\n\nQuery callbacks\n\nDelete callbacks\n\nRow Query callbacks\n\n\nRow Query callbacks will be called when run Row or Rows, by default there is no registered callbacks for it, you could register a new one like:\nfunc updateTableName(scope *gorm.Scope) {\n  scope.Search.Table(scope.TableName() + \"_draft\") // append `_draft` to table name\n}\n\ndb.Callback().RowQuery().Register(\"publish:update_table_name\", updateTableName)\n\nView https://godoc.org/github.com/jinzhu/gorm to view all available API\n"},"changelog.html":{"url":"changelog.html","title":"Change Log","keywords":"","body":"Change Log\nv1.0\nBreaking Changes\n\ngorm.Open return type *gorm.DB instead of gorm.DB\n\nUpdating will only update changed fields\nMost applications won't be affected, only when you are changing updating values in callbacks like BeforeSave, BeforeUpdate, you should use scope.SetColumn then, for example:\nfunc (user *User) BeforeUpdate(scope *gorm.Scope) {\n  if pw, err := bcrypt.GenerateFromPassword(user.Password, 0); err == nil {\n    scope.SetColumn(\"EncryptedPassword\", pw)\n    // user.EncryptedPassword = pw  // doesn't work, won't including EncryptedPassword field when updating\n  }\n}\n\n\nSoft Delete's default querying scope will only check deleted_at IS NULL\nBefore it will check deleted_at less than 0001-01-02 also to exclude blank time, like:\nSELECT * FROM users WHERE deleted_at IS NULL OR deleted_at \nBut it is not necessary if you are using type *time.Time for your model's DeletedAt, which has been used by gorm.Model, so below SQl is enough\nSELECT * FROM users WHERE deleted_at IS NULL\nSo if you are using gorm.Model, then you are good, nothing need to be change, just make sure all records having blank time for deleted_at set to NULL, sample migrate script:\n\n\nimport (\n    \"github.com/jinzhu/now\"\n)\n\nfunc main() {\n  var models = []interface{}{&User{}, &Image{}}\n  for _, model := range models {\n    db.Unscoped().Model(model).Where(\"deleted_at \n\nNew ToDBName logic\nBefore when GORM convert Struct, Field's name to db name, only those common initialisms from golint like HTTP, URI are special handled.\nSo field HTTP's db name will be http not h_t_t_p, but some other initialisms like SKU that not in golint, it's db name will be s_k_u, which looks ugly, this release fixed this, any upper case initialisms should be converted correctly.\nIf your applications using some upper case initialisms which doesn't exist in golint, you need to overwrite default column name with tag, like gorm:\"column:s_k_u\", or alert your database's column name according to new logic\n\nError RecordNotFound has been renamed to ErrRecordNotFound\n\nmssql driver has been moved out from default drivers, import it with import _ \"github.com/jinzhu/gorm/dialects/mssql\"\n\nHstore has been moved to package github.com/jinzhu/gorm/dialects/postgres\n\n\n"}}}
\ No newline at end of file