diff --git a/.gitignore b/.gitignore index 017e4491..a6fc88a6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ -_book -node_modules +/_book +/node_modules +/gitbook diff --git a/advanced.html b/advanced.html index efa42c4e..94a79cae 100644 --- a/advanced.html +++ b/advanced.html @@ -1,12 +1,13 @@ + - Advanced Usage · GORM Guide - - - + Advanced Usage · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -65,14 +66,18 @@ -
- +
+
+ + + + + + + + +
+ + +
- + + - - - - - - - - - - - - - - - - - + @@ -835,14 +877,30 @@ db.SetLogger(log.New(os.Stdout, "\r\n" + + + + + + + + + + + + + + + + + + + + + - + diff --git a/associations.html b/associations.html index 248aac5d..1c274a10 100644 --- a/associations.html +++ b/associations.html @@ -1,12 +1,13 @@ + - Associations · GORM Guide - - - + Associations · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -65,14 +66,18 @@ -
- +
+
+ + + + + + + + +
+ + +
- + + - - - - - - - - - - - - - - - - - + @@ -900,14 +942,30 @@ db.Model(&user).Association("Languages"< - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/callbacks.html b/callbacks.html index 048896ee..ce6044b0 100644 --- a/callbacks.html +++ b/callbacks.html @@ -1,12 +1,13 @@ + - Callbacks · GORM Guide - - - + Callbacks · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -59,20 +60,24 @@ - + -
- +
+
+ + + + + + + + +
+ + +
- + + - - - - - - - - - - - - - - - - - + @@ -757,14 +799,30 @@ 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 b4734027..ad3b6b9b 100644 --- a/changelog.html +++ b/changelog.html @@ -1,12 +1,13 @@ + - Change Log · GORM Guide - - - + Change Log · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -63,14 +64,18 @@ -
- +
+
+ + + + + + + + +
+ + +
- + + - - - - - - - - - - - - - - - - - + @@ -719,14 +761,30 @@ - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/crud.html b/crud.html new file mode 100644 index 00000000..7a413d10 --- /dev/null +++ b/crud.html @@ -0,0 +1,1412 @@ + + + + + + + CRUD: Reading and Writing Data · GORM Guide + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+ +
+ +

CRUD: Reading and Writing Data

+ + + +

Create

+

Create Record

+
user := User{Name: "Jinzhu", Age: 18, Birthday: time.Now()}
+
+db.NewRecord(user) // => returns `true` as primary key is blank
+
+db.Create(&user)
+
+db.NewRecord(user) // => return `false` after `user` created
+
+

Default Values

+

You 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.

+
type Animal struct {
+    ID   int64
+    Name string `gorm:"default:'galeone'"`
+    Age  int64
+}
+
+var animal = Animal{Age: 99, Name: ""}
+db.Create(&animal)
+// INSERT INTO animals("age") values('99');
+// SELECT name from animals WHERE ID=111; // the returning primary key is 111
+// animal.Name => 'galeone'
+
+

Setting Primary Key In Callbacks

+

If you want to set primary field's value in BeforeCreate callback, you could use scope.SetColumn, for example:

+
func (user *User) BeforeCreate(scope *gorm.Scope) error {
+  scope.SetColumn("ID", uuid.New())
+  return nil
+}
+
+

Extra Creating option

+
// Add extra SQL option for inserting SQL
+db.Set("gorm:insert_option", "ON CONFLICT").Create(&product)
+// INSERT INTO products (name, code) VALUES ("name", "code") ON CONFLICT;
+
+

Query

+
// Get first record, order by primary key
+db.First(&user)
+//// SELECT * FROM users ORDER BY id LIMIT 1;
+
+// Get last record, order by primary key
+db.Last(&user)
+//// SELECT * FROM users ORDER BY id DESC LIMIT 1;
+
+// Get all records
+db.Find(&users)
+//// SELECT * FROM users;
+
+// Get record with primary key
+db.First(&user, 10)
+//// SELECT * FROM users WHERE id = 10;
+
+

Query With Where (Plain SQL)

+
// Get first matched record
+db.Where("name = ?", "jinzhu").First(&user)
+//// SELECT * FROM users WHERE name = 'jinzhu' limit 1;
+
+// Get all matched records
+db.Where("name = ?", "jinzhu").Find(&users)
+//// SELECT * FROM users WHERE name = 'jinzhu';
+
+db.Where("name <> ?", "jinzhu").Find(&users)
+
+// IN
+db.Where("name in (?)", []string{"jinzhu", "jinzhu 2"}).Find(&users)
+
+// LIKE
+db.Where("name LIKE ?", "%jin%").Find(&users)
+
+// AND
+db.Where("name = ? AND age >= ?", "jinzhu", "22").Find(&users)
+
+// Time
+db.Where("updated_at > ?", lastWeek).Find(&users)
+
+db.Where("created_at BETWEEN ? AND ?", lastWeek, today).Find(&users)
+
+

Query With Where (Struct & Map)

+

NOTE When query with struct, GORM will only query with those fields has value

+
// Struct
+db.Where(&User{Name: "jinzhu", Age: 20}).First(&user)
+//// SELECT * FROM users WHERE name = "jinzhu" AND age = 20 LIMIT 1;
+
+// Map
+db.Where(map[string]interface{}{"name": "jinzhu", "age": 20}).Find(&users)
+//// SELECT * FROM users WHERE name = "jinzhu" AND age = 20;
+
+// Slice of primary keys
+db.Where([]int64{20, 21, 22}).Find(&users)
+//// SELECT * FROM users WHERE id IN (20, 21, 22);
+
+

Query With Not

+
db.Not("name", "jinzhu").First(&user)
+//// SELECT * FROM users WHERE name <> "jinzhu" LIMIT 1;
+
+// Not In
+db.Not("name", []string{"jinzhu", "jinzhu 2"}).Find(&users)
+//// SELECT * FROM users WHERE name NOT IN ("jinzhu", "jinzhu 2");
+
+// Not In slice of primary keys
+db.Not([]int64{1,2,3}).First(&user)
+//// SELECT * FROM users WHERE id NOT IN (1,2,3);
+
+db.Not([]int64{}).First(&user)
+//// SELECT * FROM users;
+
+// Plain SQL
+db.Not("name = ?", "jinzhu").First(&user)
+//// SELECT * FROM users WHERE NOT(name = "jinzhu");
+
+// Struct
+db.Not(User{Name: "jinzhu"}).First(&user)
+//// SELECT * FROM users WHERE name <> "jinzhu";
+
+

Query With Inline Condition

+

NOTE When query with primary key, you should carefully check the value you passed is a valid primary key, to avoid SQL injection

+
// Get by primary key
+db.First(&user, 23)
+//// SELECT * FROM users WHERE id = 23 LIMIT 1;
+
+// Plain SQL
+db.Find(&user, "name = ?", "jinzhu")
+//// SELECT * FROM users WHERE name = "jinzhu";
+
+db.Find(&users, "name <> ? AND age > ?", "jinzhu", 20)
+//// SELECT * FROM users WHERE name <> "jinzhu" AND age > 20;
+
+// Struct
+db.Find(&users, User{Age: 20})
+//// SELECT * FROM users WHERE age = 20;
+
+// Map
+db.Find(&users, map[string]interface{}{"age": 20})
+//// SELECT * FROM users WHERE age = 20;
+
+

Query With Or

+
db.Where("role = ?", "admin").Or("role = ?", "super_admin").Find(&users)
+//// SELECT * FROM users WHERE role = 'admin' OR role = 'super_admin';
+
+// Struct
+db.Where("name = 'jinzhu'").Or(User{Name: "jinzhu 2"}).Find(&users)
+//// SELECT * FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2';
+
+// Map
+db.Where("name = 'jinzhu'").Or(map[string]interface{}{"name": "jinzhu 2"}).Find(&users)
+
+

Query Chains

+

Gorm has a chainable API, you could use it like this

+
db.Where("name <> ?","jinzhu").Where("age >= ? and role <> ?",20,"admin").Find(&users)
+//// SELECT * FROM users WHERE name <> 'jinzhu' AND age >= 20 AND role <> 'admin';
+
+db.Where("role = ?", "admin").Or("role = ?", "super_admin").Not("name = ?", "jinzhu").Find(&users)
+
+

Extra Querying option

+
// Add extra SQL option for selecting SQL
+db.Set("gorm:query_option", "FOR UPDATE").First(&user, 10)
+//// SELECT * FROM users WHERE id = 10 FOR UPDATE;
+
+

FirstOrInit

+

Get first matched record, or initalize a new one with given conditions (only works with struct, map conditions)

+
// Unfound
+db.FirstOrInit(&user, User{Name: "non_existing"})
+//// user -> User{Name: "non_existing"}
+
+// Found
+db.Where(User{Name: "Jinzhu"}).FirstOrInit(&user)
+//// user -> User{Id: 111, Name: "Jinzhu", Age: 20}
+db.FirstOrInit(&user, map[string]interface{}{"name": "jinzhu"})
+//// user -> User{Id: 111, Name: "Jinzhu", Age: 20}
+
+

Attrs

+

Initalize struct with argument if record haven't been found

+
// Unfound
+db.Where(User{Name: "non_existing"}).Attrs(User{Age: 20}).FirstOrInit(&user)
+//// SELECT * FROM USERS WHERE name = 'non_existing';
+//// user -> User{Name: "non_existing", Age: 20}
+
+db.Where(User{Name: "non_existing"}).Attrs("age", 20).FirstOrInit(&user)
+//// SELECT * FROM USERS WHERE name = 'non_existing';
+//// user -> User{Name: "non_existing", Age: 20}
+
+// Found
+db.Where(User{Name: "Jinzhu"}).Attrs(User{Age: 30}).FirstOrInit(&user)
+//// SELECT * FROM USERS WHERE name = jinzhu';
+//// user -> User{Id: 111, Name: "Jinzhu", Age: 20}
+
+

Assign

+

Assign argument to results regardless it is found or not

+
// Unfound
+db.Where(User{Name: "non_existing"}).Assign(User{Age: 20}).FirstOrInit(&user)
+//// user -> User{Name: "non_existing", Age: 20}
+
+// Found
+db.Where(User{Name: "Jinzhu"}).Assign(User{Age: 30}).FirstOrInit(&user)
+//// SELECT * FROM USERS WHERE name = jinzhu';
+//// user -> User{Id: 111, Name: "Jinzhu", Age: 30}
+
+

FirstOrCreate

+

Get first matched record, or create a new one with given conditions (only works with struct, map conditions)

+
// Unfound
+db.FirstOrCreate(&user, User{Name: "non_existing"})
+//// INSERT INTO "users" (name) VALUES ("non_existing");
+//// user -> User{Id: 112, Name: "non_existing"}
+
+// Found
+db.Where(User{Name: "Jinzhu"}).FirstOrCreate(&user)
+//// user -> User{Id: 111, Name: "Jinzhu"}
+
+

Attrs

+

Assgin struct with argument if record haven't been found

+
// Unfound
+db.Where(User{Name: "non_existing"}).Attrs(User{Age: 20}).FirstOrCreate(&user)
+//// SELECT * FROM users WHERE name = 'non_existing';
+//// INSERT INTO "users" (name, age) VALUES ("non_existing", 20);
+//// user -> User{Id: 112, Name: "non_existing", Age: 20}
+
+// Found
+db.Where(User{Name: "jinzhu"}).Attrs(User{Age: 30}).FirstOrCreate(&user)
+//// SELECT * FROM users WHERE name = 'jinzhu';
+//// user -> User{Id: 111, Name: "jinzhu", Age: 20}
+
+

Assign

+

Assign it to the record regardless it is found or not, and save back to database.

+
// Unfound
+db.Where(User{Name: "non_existing"}).Assign(User{Age: 20}).FirstOrCreate(&user)
+//// SELECT * FROM users WHERE name = 'non_existing';
+//// INSERT INTO "users" (name, age) VALUES ("non_existing", 20);
+//// user -> User{Id: 112, Name: "non_existing", Age: 20}
+
+// Found
+db.Where(User{Name: "jinzhu"}).Assign(User{Age: 30}).FirstOrCreate(&user)
+//// SELECT * FROM users WHERE name = 'jinzhu';
+//// UPDATE users SET age=30 WHERE id = 111;
+//// user -> User{Id: 111, Name: "jinzhu", Age: 30}
+
+

Select

+

Specify fields that you want to retrieve from database, by default, will select all fields;

+
db.Select("name, age").Find(&users)
+//// SELECT name, age FROM users;
+
+db.Select([]string{"name", "age"}).Find(&users)
+//// SELECT name, age FROM users;
+
+db.Table("users").Select("COALESCE(age,?)", 42).Rows()
+//// SELECT COALESCE(age,'42') FROM users;
+
+

Order

+

Specify order when retrieve records from database, set reorder to true to overwrite defined conditions

+
db.Order("age desc, name").Find(&users)
+//// SELECT * FROM users ORDER BY age desc, name;
+
+// Multiple orders
+db.Order("age desc").Order("name").Find(&users)
+//// SELECT * FROM users ORDER BY age desc, name;
+
+// ReOrder
+db.Order("age desc").Find(&users1).Order("age", true).Find(&users2)
+//// SELECT * FROM users ORDER BY age desc; (users1)
+//// SELECT * FROM users ORDER BY age; (users2)
+
+

Limit

+

Specify the number of records to be retrieved

+
db.Limit(3).Find(&users)
+//// SELECT * FROM users LIMIT 3;
+
+// Cancel limit condition with -1
+db.Limit(10).Find(&users1).Limit(-1).Find(&users2)
+//// SELECT * FROM users LIMIT 10; (users1)
+//// SELECT * FROM users; (users2)
+
+

Offset

+

Specify the number of records to skip before starting to return the records

+
db.Offset(3).Find(&users)
+//// SELECT * FROM users OFFSET 3;
+
+// Cancel offset condition with -1
+db.Offset(10).Find(&users1).Offset(-1).Find(&users2)
+//// SELECT * FROM users OFFSET 10; (users1)
+//// SELECT * FROM users; (users2)
+
+

Count

+

Get how many records for a model

+
db.Where("name = ?", "jinzhu").Or("name = ?", "jinzhu 2").Find(&users).Count(&count)
+//// SELECT * from USERS WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (users)
+//// SELECT count(*) FROM users WHERE name = 'jinzhu' OR name = 'jinzhu 2'; (count)
+
+db.Model(&User{}).Where("name = ?", "jinzhu").Count(&count)
+//// SELECT count(*) FROM users WHERE name = 'jinzhu'; (count)
+
+db.Table("deleted_users").Count(&count)
+//// SELECT count(*) FROM deleted_users;
+
+

Group & Having

+
rows, err := db.Table("orders").Select("date(created_at) as date, sum(amount) as total").Group("date(created_at)").Rows()
+for rows.Next() {
+    ...
+}
+
+rows, err := db.Table("orders").Select("date(created_at) as date, sum(amount) as total").Group("date(created_at)").Having("sum(amount) > ?", 100).Rows()
+for rows.Next() {
+    ...
+}
+
+type Result struct {
+    Date  time.Time
+    Total int64
+}
+db.Table("orders").Select("date(created_at) as date, sum(amount) as total").Group("date(created_at)").Having("sum(amount) > ?", 100).Scan(&results)
+
+

Joins

+

Specify Joins conditions

+
rows, err := db.Table("users").Select("users.name, emails.email").Joins("left join emails on emails.user_id = users.id").Rows()
+for rows.Next() {
+    ...
+}
+
+db.Table("users").Select("users.name, emails.email").Joins("left join emails on emails.user_id = users.id").Scan(&results)
+
+// multiple joins with parameter
+db.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)
+
+

Pluck

+

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)
+
+var names []string
+db.Model(&User{}).Pluck("name", &names)
+
+db.Table("deleted_users").Pluck("name", &names)
+
+// Requesting more than one column? Do it like this:
+db.Select("name, age").Find(&users)
+
+

Scan

+

Scan results into another struct.

+
type Result struct {
+    Name string
+    Age  int
+}
+
+var result Result
+db.Table("users").Select("name, age").Where("name = ?", 3).Scan(&result)
+
+// Raw SQL
+db.Raw("SELECT name, age FROM users WHERE name = ?", 3).Scan(&result)
+
+

Scopes

+

Pass current database connection to func(*DB) *DB, which could be used to add conditions dynamically

+
func AmountGreaterThan1000(db *gorm.DB) *gorm.DB {
+    return db.Where("amount > ?", 1000)
+}
+
+func PaidWithCreditCard(db *gorm.DB) *gorm.DB {
+    return db.Where("pay_mode_sign = ?", "C")
+}
+
+func PaidWithCod(db *gorm.DB) *gorm.DB {
+    return db.Where("pay_mode_sign = ?", "C")
+}
+
+func OrderStatus(status []string) func (db *gorm.DB) *gorm.DB {
+    return func (db *gorm.DB) *gorm.DB {
+        return db.Scopes(AmountGreaterThan1000).Where("status in (?)", status)
+    }
+}
+
+db.Scopes(AmountGreaterThan1000, PaidWithCreditCard).Find(&orders)
+// Find all credit card orders and amount greater than 1000
+
+db.Scopes(AmountGreaterThan1000, PaidWithCod).Find(&orders)
+// Find all COD orders and amount greater than 1000
+
+db.Scopes(OrderStatus([]string{"paid", "shipped"})).Find(&orders)
+// Find all paid, shipped orders
+
+

Specifying The Table Name

+
// Create `deleted_users` table with struct User's definition
+db.Table("deleted_users").CreateTable(&User{})
+
+var deleted_users []User
+db.Table("deleted_users").Find(&deleted_users)
+//// SELECT * FROM deleted_users;
+
+db.Table("deleted_users").Where("name = ?", "jinzhu").Delete()
+//// DELETE FROM deleted_users WHERE name = 'jinzhu';
+
+

Preloading (Eager loading)

+
db.Preload("Orders").Find(&users)
+//// SELECT * FROM users;
+//// SELECT * FROM orders WHERE user_id IN (1,2,3,4);
+
+db.Preload("Orders", "state NOT IN (?)", "cancelled").Find(&users)
+//// SELECT * FROM users;
+//// SELECT * FROM orders WHERE user_id IN (1,2,3,4) AND state NOT IN ('cancelled');
+
+db.Where("state = ?", "active").Preload("Orders", "state NOT IN (?)", "cancelled").Find(&users)
+//// SELECT * FROM users WHERE state = 'active';
+//// SELECT * FROM orders WHERE user_id IN (1,2) AND state NOT IN ('cancelled');
+
+db.Preload("Orders").Preload("Profile").Preload("Role").Find(&users)
+//// SELECT * FROM users;
+//// SELECT * FROM orders WHERE user_id IN (1,2,3,4); // has many
+//// SELECT * FROM profiles WHERE user_id IN (1,2,3,4); // has one
+//// SELECT * FROM roles WHERE id IN (4,5,6); // belongs to
+
+

Custom Preloading SQL

+

You could custom preloading SQL by passing in func(db *gorm.DB) *gorm.DB (same type as the one used for Scopes), for example:

+
db.Preload("Orders", func(db *gorm.DB) *gorm.DB {
+    return db.Order("orders.amount DESC")
+}).Find(&users)
+//// SELECT * FROM users;
+//// SELECT * FROM orders WHERE user_id IN (1,2,3,4) order by orders.amount DESC;
+
+

Nested Preloading

+
db.Preload("Orders.OrderItems").Find(&users)
+db.Preload("Orders", "state = ?", "paid").Preload("Orders.OrderItems").Find(&users)
+
+

Update

+

Update All Fields

+

Save will include all fields when perform the Updating SQL, even it is not changed

+
db.First(&user)
+
+user.Name = "jinzhu 2"
+user.Age = 100
+db.Save(&user)
+
+//// UPDATE users SET name='jinzhu 2', age=100, birthday='2016-01-01', updated_at = '2013-11-17 21:34:10' WHERE id=111;
+
+

Update Changed Fields

+

If you only want to update changed Fields, you could use Update, Updates

+
// Update single attribute if it is changed
+db.Model(&user).Update("name", "hello")
+//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111;
+
+// Update single attribute with combined conditions
+db.Model(&user).Where("active = ?", true).Update("name", "hello")
+//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111 AND active=true;
+
+// Update multiple attributes with `map`, will only update those changed fields
+db.Model(&user).Updates(map[string]interface{}{"name": "hello", "age": 18, "actived": false})
+//// UPDATE users SET name='hello', age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;
+
+// Update multiple attributes with `struct`, will only update those changed & non blank fields
+db.Model(&user).Updates(User{Name: "hello", Age: 18})
+//// UPDATE users SET name='hello', age=18, updated_at = '2013-11-17 21:34:10' WHERE id = 111;
+
+// WARNING when update with struct, GORM will only update those fields that with non blank value
+// For below Update, nothing will be updated as "", 0, false are blank values of their types
+db.Model(&user).Updates(User{Name: "", Age: 0, Actived: false})
+
+

Update Selected Fields

+

If you only want to update or ignore some fields when updating, you could use Select, Omit

+
db.Model(&user).Select("name").Updates(map[string]interface{}{"name": "hello", "age": 18, "actived": false})
+//// UPDATE users SET name='hello', updated_at='2013-11-17 21:34:10' WHERE id=111;
+
+db.Model(&user).Omit("name").Updates(map[string]interface{}{"name": "hello", "age": 18, "actived": false})
+//// UPDATE users SET age=18, actived=false, updated_at='2013-11-17 21:34:10' WHERE id=111;
+
+

Update Changed Fields Without Callbacks

+

Above updating operations will perform the mdoel'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

+
// Update single attribute, similar with `Update`
+db.Model(&user).UpdateColumn("name", "hello")
+//// UPDATE users SET name='hello' WHERE id = 111;
+
+// Update multiple attributes, similar with `Updates`
+db.Model(&user).UpdateColumns(User{Name: "hello", Age: 18})
+//// UPDATE users SET name='hello', age=18 WHERE id = 111;
+
+

Batch Updates

+

Callbacks won't run when do batch updates

+
db.Table("users").Where("id IN (?)", []int{10, 11}).Updates(map[string]interface{}{"name": "hello", "age": 18})
+//// UPDATE users SET name='hello', age=18 WHERE id IN (10, 11);
+
+// Update with struct only works with none zero values, or use map[string]interface{}
+db.Model(User{}).Updates(User{Name: "hello", Age: 18})
+//// UPDATE users SET name='hello', age=18;
+
+// Get updated records count with `RowsAffected`
+db.Model(User{}).Updates(User{Name: "hello", Age: 18}).RowsAffected
+
+

Update with SQL Expression

+
DB.Model(&product).Update("price", gorm.Expr("price * ? + ?", 2, 100))
+//// UPDATE "products" SET "price" = price * '2' + '100', "updated_at" = '2013-11-17 21:34:10' WHERE "id" = '2';
+
+DB.Model(&product).Updates(map[string]interface{}{"price": gorm.Expr("price * ? + ?", 2, 100)})
+//// UPDATE "products" SET "price" = price * '2' + '100', "updated_at" = '2013-11-17 21:34:10' WHERE "id" = '2';
+
+DB.Model(&product).UpdateColumn("quantity", gorm.Expr("quantity - ?", 1))
+//// UPDATE "products" SET "quantity" = quantity - 1 WHERE "id" = '2';
+
+DB.Model(&product).Where("quantity > 1").UpdateColumn("quantity", gorm.Expr("quantity - ?", 1))
+//// UPDATE "products" SET "quantity" = quantity - 1 WHERE "id" = '2' AND quantity > 1;
+
+

Change Updating Values In Callbacks

+

If you want to change updating values in callbacks using BeforeUpdate, BeforeSave, you could use scope.SetColumn, for example:

+
func (user *User) BeforeSave(scope *gorm.Scope) (err error) {
+  if pw, err := bcrypt.GenerateFromPassword(user.Password, 0); err == nil {
+    scope.SetColumn("EncryptedPassword", pw)
+  }
+}
+
+

Extra Updating option

+
// Add extra SQL option for updating SQL
+db.Model(&user).Set("gorm:update_option", "OPTION (OPTIMIZE FOR UNKNOWN)").Update("name, "hello")
+//// UPDATE users SET name='hello', updated_at = '2013-11-17 21:34:10' WHERE id=111 OPTION (OPTIMIZE FOR UNKNOWN);
+
+

Delete

+

WARNING 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

+
// Delete an existing record
+db.Delete(&email)
+//// DELETE from emails where id=10;
+
+// Add extra SQL option for deleting SQL
+db.Set("gorm:delete_option", "OPTION (OPTIMIZE FOR UNKNOWN)").Delete(&email)
+//// DELETE from emails where id=10 OPTION (OPTIMIZE FOR UNKNOWN);
+
+

Batch Delete

+

Delete all matched records

+
db.Where("email LIKE ?", "%jinzhu%").Delete(Email{})
+//// DELETE from emails where email LIKE "%jinhu%";
+
+db.Delete(Email{}, "email LIKE ?", "%jinzhu%")
+//// DELETE from emails where email LIKE "%jinhu%";
+
+

Soft Delete

+

If 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

+
db.Delete(&user)
+//// UPDATE users SET deleted_at="2013-10-29 10:23" WHERE id = 111;
+
+// Batch Delete
+db.Where("age = ?", 20).Delete(&User{})
+//// UPDATE users SET deleted_at="2013-10-29 10:23" WHERE age = 20;
+
+// Soft deleted records will be ignored when query them
+db.Where("age = 20").Find(&user)
+//// SELECT * FROM users WHERE age = 20 AND deleted_at IS NULL;
+
+// Find soft deleted records with Unscoped
+db.Unscoped().Where("age = 20").Find(&users)
+//// SELECT * FROM users WHERE age = 20;
+
+// Delete record permanently with Unscoped
+db.Unscoped().Delete(&order)
+//// DELETE FROM orders WHERE id=10;
+
+

Associations

+

By 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.

+
user := User{
+    Name:            "jinzhu",
+    BillingAddress:  Address{Address1: "Billing Address - Address 1"},
+    ShippingAddress: Address{Address1: "Shipping Address - Address 1"},
+    Emails:          []Email{{Email: "jinzhu@example.com"}, {Email: "jinzhu-2@example@example.com"}},
+    Languages:       []Language{{Name: "ZH"}, {Name: "EN"}},
+}
+
+db.Create(&user)
+//// BEGIN TRANSACTION;
+//// INSERT INTO "addresses" (address1) VALUES ("Billing Address - Address 1");
+//// INSERT INTO "addresses" (address1) VALUES ("Shipping Address - Address 1");
+//// INSERT INTO "users" (name,billing_address_id,shipping_address_id) VALUES ("jinzhu", 1, 2);
+//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu@example.com");
+//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu-2@example.com");
+//// INSERT INTO "languages" ("name") VALUES ('ZH');
+//// INSERT INTO user_languages ("user_id","language_id") VALUES (111, 1);
+//// INSERT INTO "languages" ("name") VALUES ('EN');
+//// INSERT INTO user_languages ("user_id","language_id") VALUES (111, 2);
+//// COMMIT;
+
+db.Save(&user)
+
+

Refer Associations for more details

+

Skip Save Associations when creating/updating

+

By default when saving an record, GORM will save its associations also, you could skip it by set gorm:save_associations to false

+
db.Set("gorm:save_associations", false).Create(&user)
+
+db.Set("gorm:save_associations", false).Save(&user)
+
+

Skip Save Associations by Tag

+

You could use Tag to config your struct to never save an association when creating/updating

+
type User struct {
+  gorm.Model
+  Name      string
+  CompanyID uint
+  Company   Company `gorm:"save_associations:false"`
+}
+
+type Company struct {
+  gorm.Model
+  Name string
+}
+
+ + +
+ +
+
+
+ +

results matching ""

+
    + +
    +
    + +

    No results matching ""

    + +
    +
    +
    + +
    +
    + +
    + + + + + + + + + + + + + + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/database.html b/database.html index b579f94a..c187e6ab 100644 --- a/database.html +++ b/database.html @@ -1,12 +1,13 @@ + - Database · GORM Guide - - - + Database · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -65,14 +66,18 @@ -
    - +
    +
    + + + + + + + + +
    + + +
    - + + - - - - - - - - - - - - - - - - - + @@ -815,14 +857,30 @@ db.Model(&User{}).RemoveIndex("idx_user_name& - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/development.html b/development.html index 0121c0cd..020e1df8 100644 --- a/development.html +++ b/development.html @@ -1,12 +1,13 @@ + - Development · GORM Guide - - - + Development · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -65,14 +66,18 @@ -
    - +
    +
    + + + + + + + + +
    + + +
    - + + - - - - - - - - - - - - - - - - - + @@ -760,14 +802,30 @@ db.Callback().RowQuery().Register("publish:update - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/documents/SUMMARY.md b/documents/SUMMARY.md index ff6166f7..d3345830 100644 --- a/documents/SUMMARY.md +++ b/documents/SUMMARY.md @@ -14,12 +14,13 @@ * [Many To Many](associations.md#many-to-many) * [Polymorphism](associations.md#polymorphism) * [Association Mode](associations.md#association-mode) -* [CRUD: Reading and Writing Data](curd.md) - * [Create](curd.md#create), - * [Query](curd.md#query), - * [Preloading (Eager Loading)](curd.md#preloading-eager-loading), - * [Update](curd.md#update), - * [Delete / Soft Delete](curd.md#delete) +* [CRUD: Reading and Writing Data](crud.md) + * [Create](crud.md#create), + * [Query](crud.md#query), + * [Preloading (Eager Loading)](crud.md#preloading-eager-loading), + * [Update](crud.md#update), + * [Delete / Soft Delete](crud.md#delete) + * [Associations](crud.md#associations) * [Callbacks](callbacks.md) * [Advanced Usage](advanced.md) * [Error Handling](advanced.md#error-handling) diff --git a/documents/book.json b/documents/book.json index 081243f5..234e6b12 100644 --- a/documents/book.json +++ b/documents/book.json @@ -1,7 +1,7 @@ { "title": "GORM Guide", "plugins": [ - "toc", "github", "edit-link", "anker-enable" + "toc", "github", "edit-link" ], "pluginsConfig": { "fontsettings": { diff --git a/documents/curd.md b/documents/crud.md similarity index 96% rename from documents/curd.md rename to documents/crud.md index 0dbbc1c7..30d1852e 100644 --- a/documents/curd.md +++ b/documents/crud.md @@ -14,40 +14,6 @@ db.NewRecord(user) // => returns `true` as primary key is blank db.Create(&user) db.NewRecord(user) // => return `false` after `user` created - -// Associations will be inserted automatically when save the record -user := User{ - Name: "jinzhu", - BillingAddress: Address{Address1: "Billing Address - Address 1"}, - ShippingAddress: Address{Address1: "Shipping Address - Address 1"}, - Emails: []Email{{Email: "jinzhu@example.com"}, {Email: "jinzhu-2@example@example.com"}}, - Languages: []Language{{Name: "ZH"}, {Name: "EN"}}, -} - -db.Create(&user) -//// BEGIN TRANSACTION; -//// INSERT INTO "addresses" (address1) VALUES ("Billing Address - Address 1"); -//// INSERT INTO "addresses" (address1) VALUES ("Shipping Address - Address 1"); -//// INSERT INTO "users" (name,billing_address_id,shipping_address_id) VALUES ("jinzhu", 1, 2); -//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu@example.com"); -//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu-2@example.com"); -//// INSERT INTO "languages" ("name") VALUES ('ZH'); -//// INSERT INTO user_languages ("user_id","language_id") VALUES (111, 1); -//// INSERT INTO "languages" ("name") VALUES ('EN'); -//// INSERT INTO user_languages ("user_id","language_id") VALUES (111, 2); -//// COMMIT; -``` - -### Create With Associations - -Refer [Associations](associations.html) for more details - -#### Skip Save Associations when creating - -By default, GORM will save associations also when creating, you could skip it by set `gorm:save_associations` to `false` - -```go -db.Set("gorm:save_associations", false).Create(&user) ``` ### Default Values @@ -685,14 +651,6 @@ func (user *User) BeforeSave(scope *gorm.Scope) (err error) { } ``` -### Skip Save Associations when updating - -By default, GORM will save associations also when updating, you could skip it by set `gorm:save_associations` to `false` - -```go -db.Set("gorm:save_associations", false).Save(&user) -``` - ### Extra Updating option ```go @@ -751,3 +709,62 @@ db.Unscoped().Where("age = 20").Find(&users) db.Unscoped().Delete(&order) //// DELETE FROM orders WHERE id=10; ``` + +## Associations + +By 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. + +```go +user := User{ + Name: "jinzhu", + BillingAddress: Address{Address1: "Billing Address - Address 1"}, + ShippingAddress: Address{Address1: "Shipping Address - Address 1"}, + Emails: []Email{{Email: "jinzhu@example.com"}, {Email: "jinzhu-2@example@example.com"}}, + Languages: []Language{{Name: "ZH"}, {Name: "EN"}}, +} + +db.Create(&user) +//// BEGIN TRANSACTION; +//// INSERT INTO "addresses" (address1) VALUES ("Billing Address - Address 1"); +//// INSERT INTO "addresses" (address1) VALUES ("Shipping Address - Address 1"); +//// INSERT INTO "users" (name,billing_address_id,shipping_address_id) VALUES ("jinzhu", 1, 2); +//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu@example.com"); +//// INSERT INTO "emails" (user_id,email) VALUES (111, "jinzhu-2@example.com"); +//// INSERT INTO "languages" ("name") VALUES ('ZH'); +//// INSERT INTO user_languages ("user_id","language_id") VALUES (111, 1); +//// INSERT INTO "languages" ("name") VALUES ('EN'); +//// INSERT INTO user_languages ("user_id","language_id") VALUES (111, 2); +//// COMMIT; + +db.Save(&user) +``` + +Refer [Associations](associations.html) for more details + +### Skip Save Associations when creating/updating + +By default when saving an record, GORM will save its associations also, you could skip it by set `gorm:save_associations` to `false` + +```go +db.Set("gorm:save_associations", false).Create(&user) + +db.Set("gorm:save_associations", false).Save(&user) +``` + +### Skip Save Associations by Tag + +You could use Tag to config your struct to never save an association when creating/updating + +```go +type User struct { + gorm.Model + Name string + CompanyID uint + Company Company `gorm:"save_associations:false"` +} + +type Company struct { + gorm.Model + Name string +} +``` diff --git a/gitbook/fonts/fontawesome/FontAwesome.otf b/gitbook/fonts/fontawesome/FontAwesome.otf index 3ed7f8b4..d4de13e8 100644 Binary files a/gitbook/fonts/fontawesome/FontAwesome.otf and b/gitbook/fonts/fontawesome/FontAwesome.otf differ diff --git a/gitbook/fonts/fontawesome/fontawesome-webfont.eot b/gitbook/fonts/fontawesome/fontawesome-webfont.eot index 9b6afaed..c7b00d2b 100644 Binary files a/gitbook/fonts/fontawesome/fontawesome-webfont.eot and b/gitbook/fonts/fontawesome/fontawesome-webfont.eot differ diff --git a/gitbook/fonts/fontawesome/fontawesome-webfont.svg b/gitbook/fonts/fontawesome/fontawesome-webfont.svg index d05688e9..8b66187f 100644 --- a/gitbook/fonts/fontawesome/fontawesome-webfont.svg +++ b/gitbook/fonts/fontawesome/fontawesome-webfont.svg @@ -169,7 +169,7 @@ - + @@ -178,7 +178,7 @@ - + @@ -363,7 +363,7 @@ - + @@ -484,7 +484,7 @@ - + @@ -626,7 +626,7 @@ - + @@ -641,15 +641,45 @@ - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/gitbook/fonts/fontawesome/fontawesome-webfont.ttf b/gitbook/fonts/fontawesome/fontawesome-webfont.ttf index 26dea795..f221e50a 100644 Binary files a/gitbook/fonts/fontawesome/fontawesome-webfont.ttf and b/gitbook/fonts/fontawesome/fontawesome-webfont.ttf differ diff --git a/gitbook/fonts/fontawesome/fontawesome-webfont.woff b/gitbook/fonts/fontawesome/fontawesome-webfont.woff index dc35ce3c..6e7483cf 100644 Binary files a/gitbook/fonts/fontawesome/fontawesome-webfont.woff and b/gitbook/fonts/fontawesome/fontawesome-webfont.woff differ diff --git a/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 b/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 index 500e5172..7eb74fd1 100644 Binary files a/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 and b/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 differ diff --git a/gitbook/gitbook-plugin-highlight/ebook.css b/gitbook/gitbook-plugin-highlight/ebook.css index 3779bae6..cecaaab5 100644 --- a/gitbook/gitbook-plugin-highlight/ebook.css +++ b/gitbook/gitbook-plugin-highlight/ebook.css @@ -24,6 +24,8 @@ pre .hljs-tag, code .hljs-tag, pre .hljs-regexp, code .hljs-regexp, +pre .hljs-deletion, +code .hljs-deletion, pre .ruby .hljs-constant, code .ruby .hljs-constant, pre .xml .hljs-tag .hljs-title, @@ -72,6 +74,8 @@ pre .hljs-inheritance, code .hljs-inheritance, pre .hljs-header, code .hljs-header, +pre .hljs-addition, +code .hljs-addition, pre .ruby .hljs-symbol, code .ruby .hljs-symbol, pre .xml .hljs-cdata, diff --git a/gitbook/gitbook-plugin-highlight/website.css b/gitbook/gitbook-plugin-highlight/website.css index 2aabd3de..6674448f 100644 --- a/gitbook/gitbook-plugin-highlight/website.css +++ b/gitbook/gitbook-plugin-highlight/website.css @@ -24,6 +24,8 @@ .book .book-body .page-wrapper .page-inner section.normal code .hljs-tag, .book .book-body .page-wrapper .page-inner section.normal pre .hljs-regexp, .book .book-body .page-wrapper .page-inner section.normal code .hljs-regexp, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-deletion, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-deletion, .book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-constant, .book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-constant, .book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-tag .hljs-title, @@ -72,6 +74,8 @@ .book .book-body .page-wrapper .page-inner section.normal code .hljs-inheritance, .book .book-body .page-wrapper .page-inner section.normal pre .hljs-header, .book .book-body .page-wrapper .page-inner section.normal code .hljs-header, +.book .book-body .page-wrapper .page-inner section.normal pre .hljs-addition, +.book .book-body .page-wrapper .page-inner section.normal code .hljs-addition, .book .book-body .page-wrapper .page-inner section.normal pre .ruby .hljs-symbol, .book .book-body .page-wrapper .page-inner section.normal code .ruby .hljs-symbol, .book .book-body .page-wrapper .page-inner section.normal pre .xml .hljs-cdata, @@ -319,6 +323,8 @@ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull element for each result + res.results.forEach(function(res) { + var $li = $('
  • ', { + 'class': 'search-results-item' + }); + + var $title = $('

    '); + + var $link = $('', { + 'href': gitbook.state.basePath + '/' + res.url, + 'text': res.title + }); + + var content = res.body.trim(); + if (content.length > MAX_DESCRIPTION_SIZE) { + content = content.slice(0, MAX_DESCRIPTION_SIZE).trim()+'...'; + } + var $content = $('

    ').html(content); + + $link.appendTo($title); + $title.appendTo($li); + $content.appendTo($li); + $li.appendTo($searchList); + }); + } + + function launchSearch(q) { + // Add class for loading + $body.addClass('with-search'); + $body.addClass('search-loading'); + + // Launch search query + throttle(gitbook.search.query(q, 0, MAX_RESULTS) + .then(function(results) { + displayResults(results); }) - .value(); - - return results; + .always(function() { + $body.removeClass('search-loading'); + }), 1000); } - // Create search form - function createForm(value) { - if ($searchForm) $searchForm.remove(); - - $searchForm = $('

    ', { - 'class': 'book-search', - 'role': 'search' - }); - - $searchInput = $('', { - 'type': 'text', - 'class': 'form-control', - 'val': value, - 'placeholder': 'Type to search' - }); - - $searchInput.appendTo($searchForm); - $searchForm.prependTo(gitbook.state.$book.find('.book-summary')); + function closeSearch() { + $body.removeClass('with-search'); + $bookSearchResults.removeClass('open'); } - // Return true if search is open - function isSearchOpen() { - return gitbook.state.$book.hasClass("with-search"); - } + function launchSearchFromQueryString() { + var q = getParameterByName('q'); + if (q && q.length > 0) { + // Update search input + $searchInput.val(q); - // Toggle the search - function toggleSearch(_state) { - if (isSearchOpen() === _state) return; - - gitbook.state.$book.toggleClass("with-search", _state); - - // If search bar is open: focus input - if (isSearchOpen()) { - gitbook.sidebar.toggle(true); - $searchInput.focus(); - } else { - $searchInput.blur(); - $searchInput.val(""); - gitbook.sidebar.filter(null); + // Launch search + launchSearch(q); } } - // Recover current search when page changed - function recoverSearch() { - var keyword = gitbook.storage.get("keyword", ""); + function bindSearch() { + // Bind DOM + $searchInput = $('#book-search-input input'); + $bookSearchResults = $('#book-search-results'); + $searchList = $bookSearchResults.find('.search-results-list'); + $searchTitle = $bookSearchResults.find('.search-results-title'); + $searchResultsCount = $searchTitle.find('.search-results-count'); + $searchQuery = $searchTitle.find('.search-query'); - createForm(keyword); + // Launch query based on input content + function handleUpdate() { + var q = $searchInput.val(); - if (keyword.length > 0) { - if(!isSearchOpen()) { - toggleSearch(); - } - gitbook.sidebar.filter(_.pluck(search(keyword), "path")); - } - }; - - - gitbook.events.bind("start", function(config) { - // Pre-fetch search index and create the form - fetchIndex(); - createForm(); - - // Type in search bar - $(document).on("keyup", ".book-search input", function(e) { - var key = (e.keyCode ? e.keyCode : e.which); - var q = $(this).val(); - - if (key == 27) { - e.preventDefault(); - toggleSearch(false); - return; - } if (q.length == 0) { - gitbook.sidebar.filter(null); - gitbook.storage.remove("keyword"); - } else { - var results = search(q); - gitbook.sidebar.filter( - _.pluck(results, "path") - ); - gitbook.storage.set("keyword", q); + closeSearch(); + } + else { + launchSearch(q); + } + } + + // Detect true content change in search input + // Workaround for IE < 9 + var propertyChangeUnbound = false; + $searchInput.on('propertychange', function(e) { + if (e.originalEvent.propertyName == 'value') { + handleUpdate(); } }); - // Create the toggle search button - gitbook.toolbar.createButton({ - icon: 'fa fa-search', - label: 'Search', - position: 'left', - onClick: toggleSearch + // HTML5 (IE9 & others) + $searchInput.on('input', function(e) { + // Unbind propertychange event for IE9+ + if (!propertyChangeUnbound) { + $(this).unbind('propertychange'); + propertyChangeUnbound = true; + } + + handleUpdate(); }); - // Bind keyboard to toggle search - gitbook.keyboard.bind(['f'], toggleSearch) + // Push to history on blur + $searchInput.on('blur', function(e) { + // Update history state + if (usePushState) { + var uri = updateQueryString('q', $(this).val()); + history.pushState({ path: uri }, null, uri); + } + }); + } + + gitbook.events.on('page.change', function() { + bindSearch(); + closeSearch(); + + // Launch search based on query parameter + if (gitbook.search.isInitialized()) { + launchSearchFromQueryString(); + } }); - gitbook.events.bind("page.change", recoverSearch); + gitbook.events.on('search.ready', function() { + bindSearch(); + + // Launch search from query param at start + launchSearchFromQueryString(); + }); + + function getParameterByName(name) { + var url = window.location.href; + name = name.replace(/[\[\]]/g, '\\$&'); + var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)', 'i'), + results = regex.exec(url); + if (!results) return null; + if (!results[2]) return ''; + return decodeURIComponent(results[2].replace(/\+/g, ' ')); + } + + function updateQueryString(key, value) { + value = encodeURIComponent(value); + + var url = window.location.href; + var re = new RegExp('([?&])' + key + '=.*?(&|#|$)(.*)', 'gi'), + hash; + + if (re.test(url)) { + if (typeof value !== 'undefined' && value !== null) + return url.replace(re, '$1' + key + '=' + value + '$2$3'); + else { + hash = url.split('#'); + url = hash[0].replace(re, '$1$3').replace(/(&|\?)$/, ''); + if (typeof hash[1] !== 'undefined' && hash[1] !== null) + url += '#' + hash[1]; + return url; + } + } + else { + if (typeof value !== 'undefined' && value !== null) { + var separator = url.indexOf('?') !== -1 ? '&' : '?'; + hash = url.split('#'); + url = hash[0] + separator + key + '=' + value; + if (typeof hash[1] !== 'undefined' && hash[1] !== null) + url += '#' + hash[1]; + return url; + } + else + return url; + } + } }); - - diff --git a/gitbook/gitbook-plugin-sharing/buttons.js b/gitbook/gitbook-plugin-sharing/buttons.js index daf7d5f5..709a4e4c 100644 --- a/gitbook/gitbook-plugin-sharing/buttons.js +++ b/gitbook/gitbook-plugin-sharing/buttons.js @@ -1,11 +1,11 @@ -require(["gitbook", "lodash"], function(gitbook, _) { +require(['gitbook', 'jquery'], function(gitbook, $) { var SITES = { 'facebook': { 'label': 'Facebook', 'icon': 'fa fa-facebook', 'onClick': function(e) { e.preventDefault(); - window.open("http://www.facebook.com/sharer/sharer.php?s=100&p[url]="+encodeURIComponent(location.href)); + window.open('http://www.facebook.com/sharer/sharer.php?s=100&p[url]='+encodeURIComponent(location.href)); } }, 'twitter': { @@ -13,7 +13,7 @@ require(["gitbook", "lodash"], function(gitbook, _) { 'icon': 'fa fa-twitter', 'onClick': function(e) { e.preventDefault(); - window.open("http://twitter.com/home?status="+encodeURIComponent(document.title+" "+location.href)); + window.open('http://twitter.com/home?status='+encodeURIComponent(document.title+' '+location.href)); } }, 'google': { @@ -21,7 +21,7 @@ require(["gitbook", "lodash"], function(gitbook, _) { 'icon': 'fa fa-google-plus', 'onClick': function(e) { e.preventDefault(); - window.open("https://plus.google.com/share?url="+encodeURIComponent(location.href)); + window.open('https://plus.google.com/share?url='+encodeURIComponent(location.href)); } }, 'weibo': { @@ -29,7 +29,7 @@ require(["gitbook", "lodash"], function(gitbook, _) { 'icon': 'fa fa-weibo', 'onClick': function(e) { e.preventDefault(); - window.open("http://service.weibo.com/share/share.php?content=utf-8&url="+encodeURIComponent(location.href)+"&title="+encodeURIComponent(document.title)); + window.open('http://service.weibo.com/share/share.php?content=utf-8&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)); } }, 'instapaper': { @@ -37,7 +37,7 @@ require(["gitbook", "lodash"], function(gitbook, _) { 'icon': 'fa fa-instapaper', 'onClick': function(e) { e.preventDefault(); - window.open("http://www.instapaper.com/text?u="+encodeURIComponent(location.href)); + window.open('http://www.instapaper.com/text?u='+encodeURIComponent(location.href)); } }, 'vk': { @@ -45,28 +45,25 @@ require(["gitbook", "lodash"], function(gitbook, _) { 'icon': 'fa fa-vk', 'onClick': function(e) { e.preventDefault(); - window.open("http://vkontakte.ru/share.php?url="+encodeURIComponent(location.href)); + window.open('http://vkontakte.ru/share.php?url='+encodeURIComponent(location.href)); } } }; - gitbook.events.bind("start", function(e, config) { + gitbook.events.bind('start', function(e, config) { var opts = config.sharing; // Create dropdown menu - var menu = _.chain(opts.all) - .map(function(id) { - var site = SITES[id]; + var menu = $.map(opts.all, function(id) { + var site = SITES[id]; - return { - text: site.label, - onClick: site.onClick - }; - }) - .compact() - .value(); + return { + text: site.label, + onClick: site.onClick + }; + }); // Create main button with dropdown if (menu.length > 0) { @@ -79,7 +76,7 @@ require(["gitbook", "lodash"], function(gitbook, _) { } // Direct actions to share - _.each(SITES, function(site, sideId) { + $.each(SITES, function(sideId, site) { if (!opts[sideId]) return; gitbook.toolbar.createButton({ diff --git a/gitbook/style.css b/gitbook/style.css index f4973090..9dbba3d0 100644 --- a/gitbook/style.css +++ b/gitbook/style.css @@ -1,9 +1,9 @@ -/*! normalize.css v2.1.0 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}/*! +/*! normalize.css v2.1.0 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.link-inherit{color:inherit}.link-inherit:focus,.link-inherit:hover{color:inherit}.hidden{display:none}.alert{padding:15px;margin-bottom:20px;color:#444;background:#eee;border-bottom:5px solid #ddd}.alert-success{background:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-info{background:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-danger{background:#f2dede;border-color:#ebccd1;color:#a94442}.alert-warning{background:#fcf8e3;border-color:#faebcc;color:#8a6d3b}/*! + * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome/fontawesome-webfont.eot?v=4.6.3);src:url(fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.6.3) format('embedded-opentype'),url(fonts/fontawesome/fontawesome-webfont.woff2?v=4.6.3) format('woff2'),url(fonts/fontawesome/fontawesome-webfont.woff?v=4.6.3) format('woff'),url(fonts/fontawesome/fontawesome-webfont.ttf?v=4.6.3) format('truetype'),url(fonts/fontawesome/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/*! * Preboot v2 * * Open sourced under MIT license by @mdo. * Some variables and mixins from Bootstrap (Apache 2 license). - */.link-inherit{color:inherit}.link-inherit:focus,.link-inherit:hover{color:inherit}.hidden{display:none}/*! - * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome/fontawesome-webfont.eot?v=4.5.0);src:url(fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.5.0) format('embedded-opentype'),url(fonts/fontawesome/fontawesome-webfont.woff2?v=4.5.0) format('woff2'),url(fonts/fontawesome/fontawesome-webfont.woff?v=4.5.0) format('woff'),url(fonts/fontawesome/fontawesome-webfont.ttf?v=4.5.0) format('truetype'),url(fonts/fontawesome/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.book-langs-index{width:100%;height:100%;padding:40px 0;margin:0;overflow:auto}@media (max-width:600px){.book-langs-index{padding:0}}.book-langs-index .inner{max-width:600px;width:100%;margin:0 auto;padding:30px;background:#fff;border-radius:3px}.book-langs-index .inner h3{margin:0}.book-langs-index .inner .languages{list-style:none;padding:20px 30px;margin-top:20px;border-top:1px solid #eee}.book-langs-index .inner .languages:after,.book-langs-index .inner .languages:before{content:" ";display:table;line-height:0}.book-langs-index .inner .languages:after{clear:both}.book-langs-index .inner .languages li{width:50%;float:left;padding:10px 5px;font-size:16px}@media (max-width:600px){.book-langs-index .inner .languages li{width:100%;max-width:100%}}.book .book-header{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;overflow:visible;height:50px;padding:0 8px;z-index:2;font-size:.85em;color:#7e888b;background:0 0}.book .book-header .btn{display:block;height:50px;padding:0 15px;border-bottom:none;color:#ccc;text-transform:uppercase;line-height:50px;-webkit-box-shadow:none!important;box-shadow:none!important;position:relative;font-size:14px}.book .book-header .btn:hover{position:relative;text-decoration:none;color:#444;background:0 0}.book .book-header h1{margin:0;font-size:20px;font-weight:200;text-align:center;line-height:50px;opacity:0;-webkit-transition:opacity ease .4s;-moz-transition:opacity ease .4s;-o-transition:opacity ease .4s;transition:opacity ease .4s;padding-left:200px;padding-right:200px;-webkit-transition:opacity .2s ease;-moz-transition:opacity .2s ease;-o-transition:opacity .2s ease;transition:opacity .2s ease;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.book .book-header h1 a,.book .book-header h1 a:hover{color:inherit;text-decoration:none}@media (max-width:1000px){.book .book-header h1{display:none}}.book .book-header h1 i{display:none}.book .book-header:hover h1{opacity:1}.book.is-loading .book-header h1 i{display:inline-block}.book.is-loading .book-header h1 a{display:none}.dropdown{position:relative}.dropdown-menu{position:absolute;top:100%;left:0;z-index:100;display:none;float:left;min-width:160px;padding:0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fafafa;border:1px solid rgba(0,0,0,.07);border-radius:1px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.open{display:block}.dropdown-menu.dropdown-left{left:auto;right:4%}.dropdown-menu.dropdown-left .dropdown-caret{right:14px;left:auto}.dropdown-menu .dropdown-caret{position:absolute;top:-8px;left:14px;width:18px;height:10px;float:left;overflow:hidden}.dropdown-menu .dropdown-caret .caret-outer{position:absolute;border-left:9px solid transparent;border-right:9px solid transparent;border-bottom:9px solid rgba(0,0,0,.1);height:auto;left:0;top:0;width:auto;display:inline-block;margin-left:-1px}.dropdown-menu .dropdown-caret .caret-inner{position:absolute;display:inline-block;margin-top:-1px;top:0;top:1px;border-left:9px solid transparent;border-right:9px solid transparent;border-bottom:9px solid #fafafa}.dropdown-menu .buttons{border-bottom:1px solid rgba(0,0,0,.07)}.dropdown-menu .buttons:after,.dropdown-menu .buttons:before{content:" ";display:table;line-height:0}.dropdown-menu .buttons:after{clear:both}.dropdown-menu .buttons:last-child{border-bottom:none}.dropdown-menu .buttons .button{border:0;background-color:transparent;color:#a6a6a6;width:100%;text-align:center;float:left;line-height:1.42857143;padding:8px 4px}.dropdown-menu .buttons .button:hover{color:#444}.dropdown-menu .buttons .button:focus,.dropdown-menu .buttons .button:hover{outline:0}.dropdown-menu .buttons .button.size-2{width:50%}.dropdown-menu .buttons .button.size-3{width:33%}.alert{padding:15px;margin-bottom:20px;color:#444;background:#eee;border-bottom:5px solid #ddd}.alert-success{background:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-info{background:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-danger{background:#f2dede;border-color:#ebccd1;color:#a94442}.alert-warning{background:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.book .book-summary{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;position:absolute;top:0;left:-300px;bottom:0;z-index:1;width:300px;color:#364149;background:#fafafa;border-right:1px solid rgba(0,0,0,.07);-webkit-transition:left 250ms ease;-moz-transition:left 250ms ease;-o-transition:left 250ms ease;transition:left 250ms ease}.book .book-summary ul.summary{position:absolute;top:0;left:0;right:0;bottom:0;overflow-y:auto;list-style:none;margin:0;padding:0;-webkit-transition:top .5s ease;-moz-transition:top .5s ease;-o-transition:top .5s ease;transition:top .5s ease}.book .book-summary ul.summary li{list-style:none}.book .book-summary ul.summary li.divider{height:1px;margin:7px 0;overflow:hidden;background:rgba(0,0,0,.07)}.book .book-summary ul.summary li i.fa-check{display:none;position:absolute;right:9px;top:16px;font-size:9px;color:#3c3}.book .book-summary ul.summary li.done>a{color:#364149;font-weight:400}.book .book-summary ul.summary li.done>a i{display:inline}.book .book-summary ul.summary li a,.book .book-summary ul.summary li span{display:block;padding:10px 15px;border-bottom:none;color:#364149;background:0 0;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;position:relative}.book .book-summary ul.summary li a:hover,.book .book-summary ul.summary li.active>a{color:#008cff;background:0 0;text-decoration:none}.book .book-summary ul.summary li ul{padding-left:20px}@media (max-width:600px){.book .book-summary{width:calc(100% - 60px);bottom:0;left:-100%}}.book.with-summary .book-summary{left:0}.book.without-animation .book-summary{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;transition:none!important}.book{position:relative;width:100%;height:100%}.book .book-body{position:absolute;top:0;right:0;left:0;bottom:0;overflow-y:auto;color:#000;background:#fff;-webkit-transition:left 250ms ease;-moz-transition:left 250ms ease;-o-transition:left 250ms ease;transition:left 250ms ease}.book .book-body .body-inner{position:absolute;top:0;right:0;left:0;bottom:0;overflow-y:auto}.book .book-body .page-wrapper{position:relative;outline:0}.book .book-body .page-wrapper .page-inner{max-width:800px;margin:0 auto;padding:20px 0 40px 0}.book .book-body .page-wrapper .page-inner section{margin:0 0;padding:5px 15px;background:#fff;border-radius:2px;line-height:1.7;font-size:1.6rem}.book .book-body .page-wrapper .page-inner .btn-group .btn{border-radius:0;background:#eee;border:0}@media (max-width:1240px){.book .book-body{-webkit-transition:-webkit-transform 250ms ease;-moz-transition:-moz-transform 250ms ease;-o-transition:-o-transform 250ms ease;transition:transform 250ms ease;padding-bottom:20px}.book .book-body .body-inner{position:static;min-height:calc(100% - 50px)}}@media (min-width:600px){.book.with-summary .book-body{left:300px}}@media (max-width:600px){.book.with-summary{overflow:hidden}.book.with-summary .book-body{-webkit-transform:translate(calc(100% - 60px),0);-moz-transform:translate(calc(100% - 60px),0);-ms-transform:translate(calc(100% - 60px),0);-o-transform:translate(calc(100% - 60px),0);transform:translate(calc(100% - 60px),0)}}.book.without-animation .book-body{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;transition:none!important}.buttons:after,.buttons:before{content:" ";display:table;line-height:0}.buttons:after{clear:both}.button{border:0;background-color:transparent;background:#eee;color:#666;width:100%;text-align:center;float:left;line-height:1.42857143;padding:8px 4px}.button:hover{color:#444}.button:focus,.button:hover{outline:0}.button.size-2{width:50%}.button.size-3{width:33%}.markdown-section{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}.markdown-section *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}.markdown-section>:first-child{margin-top:0!important}.markdown-section>:last-child{margin-bottom:0!important}.markdown-section blockquote,.markdown-section code,.markdown-section figure,.markdown-section img,.markdown-section pre,.markdown-section table,.markdown-section tr{page-break-inside:avoid}.markdown-section h2,.markdown-section h3,.markdown-section h4,.markdown-section h5,.markdown-section p{orphans:3;widows:3}.markdown-section h1,.markdown-section h2,.markdown-section h3,.markdown-section h4,.markdown-section h5{page-break-after:avoid}.markdown-section b,.markdown-section strong{font-weight:700}.markdown-section em{font-style:italic}.markdown-section blockquote,.markdown-section dl,.markdown-section ol,.markdown-section p,.markdown-section table,.markdown-section ul{margin-top:0;margin-bottom:.85em}.markdown-section a{color:#4183c4;text-decoration:none;background:0 0}.markdown-section a:active,.markdown-section a:focus,.markdown-section a:hover{outline:0;text-decoration:underline}.markdown-section img{border:0;max-width:100%}.markdown-section hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}.markdown-section hr:after,.markdown-section hr:before{display:table;content:" "}.markdown-section hr:after{clear:both}.markdown-section h1,.markdown-section h2,.markdown-section h3,.markdown-section h4,.markdown-section h5,.markdown-section h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}.markdown-section h1{font-size:2em}.markdown-section h2{font-size:1.75em}.markdown-section h3{font-size:1.5em}.markdown-section h4{font-size:1.25em}.markdown-section h5{font-size:1em}.markdown-section h6{font-size:1em;color:#777}.markdown-section code,.markdown-section pre{font-family:Consolas,"Liberation Mono",Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}.markdown-section pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}.markdown-section pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:0 0}.markdown-section pre>code:after,.markdown-section pre>code:before{content:normal}.markdown-section code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}.markdown-section code:after,.markdown-section code:before{letter-spacing:-.2em;content:"\00a0"}.markdown-section table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.markdown-section table td,.markdown-section table th{padding:6px 13px;border:1px solid #ddd}.markdown-section table tr{background-color:#fff;border-top:1px solid #ccc}.markdown-section table tr:nth-child(2n){background-color:#f8f8f8}.markdown-section table th{font-weight:700}.markdown-section ol,.markdown-section ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}.markdown-section ol ol,.markdown-section ol ul,.markdown-section ul ol,.markdown-section ul ul{margin-top:0;margin-bottom:0}.markdown-section ol ol{list-style-type:lower-roman}.markdown-section blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}.markdown-section blockquote:first-child{margin-top:0}.markdown-section blockquote:last-child{margin-bottom:0}.markdown-section dl{padding:0}.markdown-section dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}.markdown-section dl dd{padding:0 .85em;margin-bottom:.85em}.markdown-section dd{margin-left:0}.markdown-section .glossary-term{cursor:help;text-decoration:underline}.book .book-body .navigation{position:absolute;top:50px;bottom:0;margin:0;max-width:150px;min-width:90px;display:flex;justify-content:center;align-content:center;flex-direction:column;font-size:40px;color:#ccc;text-align:center;-webkit-transition:all 350ms ease;-moz-transition:all 350ms ease;-o-transition:all 350ms ease;transition:all 350ms ease}.book .book-body .navigation:hover{text-decoration:none;color:#444}.book .book-body .navigation.navigation-next{right:0}.book .book-body .navigation.navigation-prev{left:0}@media (max-width:1240px){.book .book-body .navigation{position:static;top:auto;max-width:50%;width:50%;display:inline-block;float:left}.book .book-body .navigation.navigation-unique{max-width:100%;width:100%}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:none;-webkit-touch-callout:none;-webkit-font-smoothing:antialiased}a{text-decoration:none}body,html{height:100%}html{font-size:62.5%}body{text-rendering:optimizeLegibility;font-smoothing:antialiased;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;letter-spacing:.2px;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} \ No newline at end of file + */.book-langs-index{width:100%;height:100%;padding:40px 0;margin:0;overflow:auto}@media (max-width:600px){.book-langs-index{padding:0}}.book-langs-index .inner{max-width:600px;width:100%;margin:0 auto;padding:30px;background:#fff;border-radius:3px}.book-langs-index .inner h3{margin:0}.book-langs-index .inner .languages{list-style:none;padding:20px 30px;margin-top:20px;border-top:1px solid #eee}.book-langs-index .inner .languages:after,.book-langs-index .inner .languages:before{content:" ";display:table;line-height:0}.book-langs-index .inner .languages:after{clear:both}.book-langs-index .inner .languages li{width:50%;float:left;padding:10px 5px;font-size:16px}@media (max-width:600px){.book-langs-index .inner .languages li{width:100%;max-width:100%}}.book-header{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;overflow:visible;height:50px;padding:0 8px;z-index:2;font-size:.85em;color:#7e888b;background:0 0}.book-header .btn{display:block;height:50px;padding:0 15px;border-bottom:none;color:#ccc;text-transform:uppercase;line-height:50px;-webkit-box-shadow:none!important;box-shadow:none!important;position:relative;font-size:14px}.book-header .btn:hover{position:relative;text-decoration:none;color:#444;background:0 0}.book-header .btn:focus{outline:0}.book-header h1{margin:0;font-size:20px;font-weight:200;text-align:center;line-height:50px;opacity:0;-webkit-transition:opacity ease .4s;-moz-transition:opacity ease .4s;-o-transition:opacity ease .4s;transition:opacity ease .4s;padding-left:200px;padding-right:200px;-webkit-transition:opacity .2s ease;-moz-transition:opacity .2s ease;-o-transition:opacity .2s ease;transition:opacity .2s ease;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.book-header h1 a,.book-header h1 a:hover{color:inherit;text-decoration:none}@media (max-width:1000px){.book-header h1{display:none}}.book-header h1 i{display:none}.book-header:hover h1{opacity:1}.book.is-loading .book-header h1 i{display:inline-block}.book.is-loading .book-header h1 a{display:none}.dropdown{position:relative}.dropdown-menu{position:absolute;top:100%;left:0;z-index:100;display:none;float:left;min-width:160px;padding:0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fafafa;border:1px solid rgba(0,0,0,.07);border-radius:1px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.open{display:block}.dropdown-menu.dropdown-left{left:auto;right:4%}.dropdown-menu.dropdown-left .dropdown-caret{right:14px;left:auto}.dropdown-menu .dropdown-caret{position:absolute;top:-8px;left:14px;width:18px;height:10px;float:left;overflow:hidden}.dropdown-menu .dropdown-caret .caret-outer{position:absolute;border-left:9px solid transparent;border-right:9px solid transparent;border-bottom:9px solid rgba(0,0,0,.1);height:auto;left:0;top:0;width:auto;display:inline-block;margin-left:-1px}.dropdown-menu .dropdown-caret .caret-inner{position:absolute;display:inline-block;margin-top:-1px;top:0;top:1px;border-left:9px solid transparent;border-right:9px solid transparent;border-bottom:9px solid #fafafa}.dropdown-menu .buttons{border-bottom:1px solid rgba(0,0,0,.07)}.dropdown-menu .buttons:after,.dropdown-menu .buttons:before{content:" ";display:table;line-height:0}.dropdown-menu .buttons:after{clear:both}.dropdown-menu .buttons:last-child{border-bottom:none}.dropdown-menu .buttons .button{border:0;background-color:transparent;color:#a6a6a6;width:100%;text-align:center;float:left;line-height:1.42857143;padding:8px 4px}.dropdown-menu .buttons .button:hover{color:#444}.dropdown-menu .buttons .button:focus,.dropdown-menu .buttons .button:hover{outline:0}.dropdown-menu .buttons .button.size-2{width:50%}.dropdown-menu .buttons .button.size-3{width:33%}.book-summary{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;position:absolute;top:0;left:-300px;bottom:0;z-index:1;overflow-y:auto;width:300px;color:#364149;background:#fafafa;border-right:1px solid rgba(0,0,0,.07);-webkit-transition:left 250ms ease;-moz-transition:left 250ms ease;-o-transition:left 250ms ease;transition:left 250ms ease}.book-summary ul.summary{list-style:none;margin:0;padding:0;-webkit-transition:top .5s ease;-moz-transition:top .5s ease;-o-transition:top .5s ease;transition:top .5s ease}.book-summary ul.summary li{list-style:none}.book-summary ul.summary li.header{padding:10px 15px;padding-top:20px;text-transform:uppercase;color:#939da3}.book-summary ul.summary li.divider{height:1px;margin:7px 0;overflow:hidden;background:rgba(0,0,0,.07)}.book-summary ul.summary li i.fa-check{display:none;position:absolute;right:9px;top:16px;font-size:9px;color:#3c3}.book-summary ul.summary li.done>a{color:#364149;font-weight:400}.book-summary ul.summary li.done>a i{display:inline}.book-summary ul.summary li a,.book-summary ul.summary li span{display:block;padding:10px 15px;border-bottom:none;color:#364149;background:0 0;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;position:relative}.book-summary ul.summary li a:hover{text-decoration:underline}.book-summary ul.summary li a:focus{outline:0}.book-summary ul.summary li.active>a{color:#008cff;background:0 0;text-decoration:none}.book-summary ul.summary li ul{padding-left:20px}@media (max-width:600px){.book-summary{width:calc(100% - 60px);bottom:0;left:-100%}}.book.with-summary .book-summary{left:0}.book.without-animation .book-summary{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;transition:none!important}.book{position:relative;width:100%;height:100%}@media (min-width:600px){.book.with-summary .book-body{left:300px}}@media (max-width:600px){.book.with-summary{overflow:hidden}.book.with-summary .book-body{-webkit-transform:translate(calc(100% - 60px),0);-moz-transform:translate(calc(100% - 60px),0);-ms-transform:translate(calc(100% - 60px),0);-o-transform:translate(calc(100% - 60px),0);transform:translate(calc(100% - 60px),0)}}.book.without-animation .book-body{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;transition:none!important}.book-body{position:absolute;top:0;right:0;left:0;bottom:0;overflow-y:auto;color:#000;background:#fff;-webkit-transition:left 250ms ease;-moz-transition:left 250ms ease;-o-transition:left 250ms ease;transition:left 250ms ease}.book-body .body-inner{position:absolute;top:0;right:0;left:0;bottom:0;overflow-y:auto}@media (max-width:1240px){.book-body{-webkit-transition:-webkit-transform 250ms ease;-moz-transition:-moz-transform 250ms ease;-o-transition:-o-transform 250ms ease;transition:transform 250ms ease;padding-bottom:20px}.book-body .body-inner{position:static;min-height:calc(100% - 50px)}}.page-wrapper{position:relative;outline:0}.page-inner{position:relative;max-width:800px;margin:0 auto;padding:20px 15px 40px 15px}.page-inner .btn-group .btn{border-radius:0;background:#eee;border:0}.buttons:after,.buttons:before{content:" ";display:table;line-height:0}.buttons:after{clear:both}.button{border:0;background-color:transparent;background:#eee;color:#666;width:100%;text-align:center;float:left;line-height:1.42857143;padding:8px 4px}.button:hover{color:#444}.button:focus,.button:hover{outline:0}.button.size-2{width:50%}.button.size-3{width:33%}.markdown-section{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}.markdown-section *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}.markdown-section>:first-child{margin-top:0!important}.markdown-section>:last-child{margin-bottom:0!important}.markdown-section blockquote,.markdown-section code,.markdown-section figure,.markdown-section img,.markdown-section pre,.markdown-section table,.markdown-section tr{page-break-inside:avoid}.markdown-section h2,.markdown-section h3,.markdown-section h4,.markdown-section h5,.markdown-section p{orphans:3;widows:3}.markdown-section h1,.markdown-section h2,.markdown-section h3,.markdown-section h4,.markdown-section h5{page-break-after:avoid}.markdown-section b,.markdown-section strong{font-weight:700}.markdown-section em{font-style:italic}.markdown-section blockquote,.markdown-section dl,.markdown-section ol,.markdown-section p,.markdown-section table,.markdown-section ul{margin-top:0;margin-bottom:.85em}.markdown-section a{color:#4183c4;text-decoration:none;background:0 0}.markdown-section a:active,.markdown-section a:focus,.markdown-section a:hover{outline:0;text-decoration:underline}.markdown-section img{border:0;max-width:100%}.markdown-section hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}.markdown-section hr:after,.markdown-section hr:before{display:table;content:" "}.markdown-section hr:after{clear:both}.markdown-section h1,.markdown-section h2,.markdown-section h3,.markdown-section h4,.markdown-section h5,.markdown-section h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}.markdown-section h1{font-size:2em}.markdown-section h2{font-size:1.75em}.markdown-section h3{font-size:1.5em}.markdown-section h4{font-size:1.25em}.markdown-section h5{font-size:1em}.markdown-section h6{font-size:1em;color:#777}.markdown-section code,.markdown-section pre{font-family:Consolas,"Liberation Mono",Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}.markdown-section pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}.markdown-section pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:0 0}.markdown-section pre>code:after,.markdown-section pre>code:before{content:normal}.markdown-section code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}.markdown-section code:after,.markdown-section code:before{letter-spacing:-.2em;content:"\00a0"}.markdown-section table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.markdown-section table td,.markdown-section table th{padding:6px 13px;border:1px solid #ddd}.markdown-section table tr{background-color:#fff;border-top:1px solid #ccc}.markdown-section table tr:nth-child(2n){background-color:#f8f8f8}.markdown-section table th{font-weight:700}.markdown-section ol,.markdown-section ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}.markdown-section ol ol,.markdown-section ol ul,.markdown-section ul ol,.markdown-section ul ul{margin-top:0;margin-bottom:0}.markdown-section ol ol{list-style-type:lower-roman}.markdown-section blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}.markdown-section blockquote:first-child{margin-top:0}.markdown-section blockquote:last-child{margin-bottom:0}.markdown-section dl{padding:0}.markdown-section dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}.markdown-section dl dd{padding:0 .85em;margin-bottom:.85em}.markdown-section dd{margin-left:0}.markdown-section .glossary-term{cursor:help;text-decoration:underline}.navigation{position:absolute;top:50px;bottom:0;margin:0;max-width:150px;min-width:90px;display:flex;justify-content:center;align-content:center;flex-direction:column;font-size:40px;color:#ccc;text-align:center;-webkit-transition:all 350ms ease;-moz-transition:all 350ms ease;-o-transition:all 350ms ease;transition:all 350ms ease}.navigation:hover{text-decoration:none;color:#444}.navigation.navigation-next{right:0}.navigation.navigation-prev{left:0}@media (max-width:1240px){.navigation{position:static;top:auto;max-width:50%;width:50%;display:inline-block;float:left}.navigation.navigation-unique{max-width:100%;width:100%}}#book-search-input{padding:6px;background:0 0;transition:top .5s ease;background:#fff;border-bottom:1px solid rgba(0,0,0,.07);border-top:1px solid rgba(0,0,0,.07);margin-bottom:10px;margin-top:-1px}#book-search-input input,#book-search-input input:focus,#book-search-input input:hover{width:100%;background:0 0;border:1px solid transparent;box-shadow:none;outline:0;line-height:22px;padding:7px 7px;color:inherit}#book-search-results{opacity:1}#book-search-results .search-results .search-results-title{text-transform:uppercase;text-align:center;font-weight:200;margin-bottom:35px;opacity:.6}#book-search-results .search-results .has-results .search-results-item{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}#book-search-results .search-results .has-results .search-results-item *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}#book-search-results .search-results .has-results .search-results-item>:first-child{margin-top:0!important}#book-search-results .search-results .has-results .search-results-item>:last-child{margin-bottom:0!important}#book-search-results .search-results .has-results .search-results-item blockquote,#book-search-results .search-results .has-results .search-results-item code,#book-search-results .search-results .has-results .search-results-item figure,#book-search-results .search-results .has-results .search-results-item img,#book-search-results .search-results .has-results .search-results-item pre,#book-search-results .search-results .has-results .search-results-item table,#book-search-results .search-results .has-results .search-results-item tr{page-break-inside:avoid}#book-search-results .search-results .has-results .search-results-item h2,#book-search-results .search-results .has-results .search-results-item h3,#book-search-results .search-results .has-results .search-results-item h4,#book-search-results .search-results .has-results .search-results-item h5,#book-search-results .search-results .has-results .search-results-item p{orphans:3;widows:3}#book-search-results .search-results .has-results .search-results-item h1,#book-search-results .search-results .has-results .search-results-item h2,#book-search-results .search-results .has-results .search-results-item h3,#book-search-results .search-results .has-results .search-results-item h4,#book-search-results .search-results .has-results .search-results-item h5{page-break-after:avoid}#book-search-results .search-results .has-results .search-results-item b,#book-search-results .search-results .has-results .search-results-item strong{font-weight:700}#book-search-results .search-results .has-results .search-results-item em{font-style:italic}#book-search-results .search-results .has-results .search-results-item blockquote,#book-search-results .search-results .has-results .search-results-item dl,#book-search-results .search-results .has-results .search-results-item ol,#book-search-results .search-results .has-results .search-results-item p,#book-search-results .search-results .has-results .search-results-item table,#book-search-results .search-results .has-results .search-results-item ul{margin-top:0;margin-bottom:.85em}#book-search-results .search-results .has-results .search-results-item a{color:#4183c4;text-decoration:none;background:0 0}#book-search-results .search-results .has-results .search-results-item a:active,#book-search-results .search-results .has-results .search-results-item a:focus,#book-search-results .search-results .has-results .search-results-item a:hover{outline:0;text-decoration:underline}#book-search-results .search-results .has-results .search-results-item img{border:0;max-width:100%}#book-search-results .search-results .has-results .search-results-item hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}#book-search-results .search-results .has-results .search-results-item hr:after,#book-search-results .search-results .has-results .search-results-item hr:before{display:table;content:" "}#book-search-results .search-results .has-results .search-results-item hr:after{clear:both}#book-search-results .search-results .has-results .search-results-item h1,#book-search-results .search-results .has-results .search-results-item h2,#book-search-results .search-results .has-results .search-results-item h3,#book-search-results .search-results .has-results .search-results-item h4,#book-search-results .search-results .has-results .search-results-item h5,#book-search-results .search-results .has-results .search-results-item h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}#book-search-results .search-results .has-results .search-results-item h1{font-size:2em}#book-search-results .search-results .has-results .search-results-item h2{font-size:1.75em}#book-search-results .search-results .has-results .search-results-item h3{font-size:1.5em}#book-search-results .search-results .has-results .search-results-item h4{font-size:1.25em}#book-search-results .search-results .has-results .search-results-item h5{font-size:1em}#book-search-results .search-results .has-results .search-results-item h6{font-size:1em;color:#777}#book-search-results .search-results .has-results .search-results-item code,#book-search-results .search-results .has-results .search-results-item pre{font-family:Consolas,"Liberation Mono",Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}#book-search-results .search-results .has-results .search-results-item pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}#book-search-results .search-results .has-results .search-results-item pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:0 0}#book-search-results .search-results .has-results .search-results-item pre>code:after,#book-search-results .search-results .has-results .search-results-item pre>code:before{content:normal}#book-search-results .search-results .has-results .search-results-item code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}#book-search-results .search-results .has-results .search-results-item code:after,#book-search-results .search-results .has-results .search-results-item code:before{letter-spacing:-.2em;content:"\00a0"}#book-search-results .search-results .has-results .search-results-item table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}#book-search-results .search-results .has-results .search-results-item table td,#book-search-results .search-results .has-results .search-results-item table th{padding:6px 13px;border:1px solid #ddd}#book-search-results .search-results .has-results .search-results-item table tr{background-color:#fff;border-top:1px solid #ccc}#book-search-results .search-results .has-results .search-results-item table tr:nth-child(2n){background-color:#f8f8f8}#book-search-results .search-results .has-results .search-results-item table th{font-weight:700}#book-search-results .search-results .has-results .search-results-item ol,#book-search-results .search-results .has-results .search-results-item ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}#book-search-results .search-results .has-results .search-results-item ol ol,#book-search-results .search-results .has-results .search-results-item ol ul,#book-search-results .search-results .has-results .search-results-item ul ol,#book-search-results .search-results .has-results .search-results-item ul ul{margin-top:0;margin-bottom:0}#book-search-results .search-results .has-results .search-results-item ol ol{list-style-type:lower-roman}#book-search-results .search-results .has-results .search-results-item blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}#book-search-results .search-results .has-results .search-results-item blockquote:first-child{margin-top:0}#book-search-results .search-results .has-results .search-results-item blockquote:last-child{margin-bottom:0}#book-search-results .search-results .has-results .search-results-item dl{padding:0}#book-search-results .search-results .has-results .search-results-item dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}#book-search-results .search-results .has-results .search-results-item dl dd{padding:0 .85em;margin-bottom:.85em}#book-search-results .search-results .has-results .search-results-item dd{margin-left:0}#book-search-results .search-results .has-results .search-results-item h3{margin-top:0;margin-bottom:0}#book-search-results .search-results .no-results{padding:40px 0}body.search-loading #book-search-results{opacity:.3}body.with-search .navigation{display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:none;-webkit-touch-callout:none;-webkit-font-smoothing:antialiased}a{text-decoration:none}body,html{height:100%}html{font-size:62.5%}body{text-rendering:optimizeLegibility;font-smoothing:antialiased;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;letter-spacing:.2px;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} \ No newline at end of file diff --git a/index.html b/index.html index ba10f461..f9380a80 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,13 @@ + - Getting Started with GORM · GORM Guide - - - + Getting Started with GORM · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -63,14 +64,18 @@ -
    - +
    +
    + + + + + + + + +
    +
    +
    @@ -718,29 +768,21 @@
    + +
    - + + - - - - - - - - - - - - - - - - - + @@ -748,14 +790,30 @@ - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/models.html b/models.html index a78db46b..86eb2b2b 100644 --- a/models.html +++ b/models.html @@ -1,12 +1,13 @@ + - Models · GORM Guide - - - + Models · GORM Guide + + + @@ -16,7 +17,7 @@ - + @@ -24,7 +25,7 @@ - + @@ -65,14 +66,18 @@ -
    - +
    +
    + + + + + + + + +
    +

    Delete 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

    + + - +
  • +
    +
    + +

    results matching ""

    +
      + +
      +
      + +

      No results matching ""

      + +
      +
      +
      +
      @@ -789,41 +839,33 @@ db.Model(&user).Update("name", + - +
      + +
      - + + - - - - - - - - - - - - - - - - - + @@ -831,14 +873,30 @@ db.Model(&user).Update("name", + + + + + + + + + + + + + + + + + + + + + - + diff --git a/search_index.json b/search_index.json index c50360d1..6a776f53 100644 --- a/search_index.json +++ b/search_index.json @@ -1 +1 @@ -{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["1","1000","2000","_","aim","associ","author","auto","base","before/aft","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{cod","db.delete(&product","db.first(&product","db.model(&product).update("price"","defer","delet","develop","eager","err","extend","fantast","featur","find","friendli","full","func","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","load","logger","main","mani","migrat","mit","nil","on","orm","overview","packag","panic("fail","plugin","polymorph","preload","price","primari","product","product'","quick","quot","quot;cod","quot;github.com/jinzhu/gorm"","quot;github.com/jinzhu/gorm/dialects/sqlite"","quot;l1212"","quot;test.db"","read","releas","schema","sql","start","string","struct","test","transact","type","u","uint","under","updat","upgrad","v1.0","var","wosmvp@gmail.com","write"],"advanced.html":["0","3).scan(&result","advanc","ag","age").row","amp","amp;ag","amp;email","amp;us","apos;db&apo","apos;tx&apo","begin","below","builder","built","card","case","check","commit","composit","connect","createanimals(db","credit","custom","databas","db'","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).geterror","db.logmode(fals","db.logmode(tru","db.model(&user).related(&credit_card).recordnotfound","db.model(&user{}).where("nam","db.raw("select","db.scanrows(row","db.setlogger(gorm.logger{revel.trac","db.setlogger(log.new(os.stdout","db.table("users").where("nam","db.where("nam","debug","default","defer","detail","diabl","don't","email","email").row","enabl","err","error","exampl","field","flow","found","func","function","gener","geterror","gorm","gorm'","gorm.db","gorm:"primary_key"","handl","happen","https://github.com/jinzhu/gorm/blob/master/logger.go","id","int","int64{11,22,33","interfac","iter","key","languagecod","log","logger","more","multipl","name","nil","note","object","on","onc","oper","order","perform","ping","point","pool","primari","print","product","queri","quot","quot;\\r\\n"","quot;giraffe"}).error","quot;hello","quot;jinzhu").first(&us","quot;jinzhu").first(&user).error","quot;jinzhu").row","quot;jinzhu").select("nam","quot;lion"}).error","raw","recordnotfound","refer","result","return","rollback","row","row.scan(&nam","rows.clos","rows.next","rows.scan(&nam","run","scan","set","shipped_at","show","singl","someth","specif","sql","sql.db","sql.row","string","struct","support","tabl","time.now","transact","tx","tx.commit","tx.creat","tx.create(&animal{nam","tx.rollback","type","us","usag","user","users;"","var","within","world").first(&user).recordnotfound"],"associations.html":["111","123","abov","account","amp","append","argument","associ","belong","belongs_to","between","card","cat","check","clear","condit","contain","count","credit_card","creditcard","current","customizeaccount","customizeperson","db.model(&user).association("languages"","db.model(&user).association("languages").append([]language{languagezh","db.model(&user).association("languages").append(language{nam","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(&languag","db.model(&user).association("languages").replace([]language{languagezh","db.model(&user).association("languages").replace(language{nam","db.model(&user).related(&card","db.model(&user).related(&email","db.model(&user).related(&languag","db.model(&user).related(&profil","delet","dog","easili","email","error","exampl","explicitli","field","fill","find","foreign","gorm.model","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"","handl","has_mani","has_on","helper","id","idaccount","idperson","inner","int","join","key","languag","languageen","mani","many2mani","match","mean","method","mode","name","need","new","note","number","omit","on","out","ownerid","ownertyp","pass","polymorph","primari","profil","profileid","profileref","queri","quot;creditcard"","quot;de"","quot;languages"","quot;languages"."id"","quot;user_languages"","quot;user_languages"."language_id"","quot;user_languages"."user_id"","record","refer","relat","relationship","remov","replac","return","same","select","sourc","source'","specifi","start","string","struct","support","tabl","thing","those","throw","toy","type","uint","us","user","user'","user_id","user_languag","userid","userref","valid","var","variabl","variable'","won't"],"callbacks.html":["1000","1000"","aftercr","aftercreate(scop","aftercreate(tx","afterdelet","afterfind","aftersav","afterupd","alreadi","associ","avail","befor","beforecr","beforedelet","beforesav","beforeupd","begin","blank","call","callback","chang","commit","creat","createdat","current","data","databas","default","defin","delet","edger","err","error","errors.new("read","errors.new("us","exampl","field","func","futur","gorm","gorm.db","gorm.scop","greater","gt","id","insert","load","made","method","model","need","object","oper","pass","pointer","preload","queri","quot;admin"","reload","return","rollback","run","same","save","save/delet","scope.db().model(u).update("role"","self","sql","stop","struct","those","timestamp","transact","tx.model(u).update("role"","u","u.id","u.readonli","unless","updat","updatedat","us","user","user'","user"","valu","visibl","want"],"changelog.html":["0","0001","01","02","02&apo","02")).update("deleted_at"","_","accord","affect","alert","amp;imag","apos;0001","applic","bcrypt.generatefrompassword(user.password","befor","beforesav","beforeupd","beforeupdate(scop","below","blank","break","callback","case","chang","check","column","common","convert","correctli","database'","db","db.unscoped().model(model).where("deleted_at","default","delete'","deleted_at","deletedat","doesn't","driver","encryptedpassword","enough","err","error","errrecordnotfound","exampl","exclud","exist","field","field'","fix","func","github.com/jinzhu/gorm/dialects/postgr","golint","good","gorm","gorm.db","gorm.expr("null"","gorm.model","gorm.open","gorm.scop","gorm:"column:s_k_u"","h_t_t_p","handl","have","hstore","http","http'","import","includ","initi","instead","interface{}{&us","it'","less","log","logic","look","lt","main","make","migrat","model","model'","move","mssql","name","necessari","need","new","nil","noth","now.mustparse("0001","null","out","overwrit","packag","pw","queri","quot","quot;github.com/jinzhu/gorm/dialects/mssql"","quot;github.com/jinzhu/now"","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","those","time","time.tim","todbnam","type","ugli","updat","upper","uri","us","user","user.encryptedpassword","v1.0","valu","var","won't","work"],"curd.html":["0","01","01&apo","1","1"","1").updatecolumn("quantity"","1).find(&users2","1,2","1,2,3","1,2,3,4","10","100","100).row","100).scan(&result","1000","10:23"","11","111","112","11}).updates(map[string]interface{}{"name"","17","18","18}).rowsaffect","2","2&apo","2"","2").find(&users).count(&count","2"}).find(&us","20","20").find(&us","20).delete(&us","20).firstorinit(&us","20}).find(&us","20}).first(&us","20}).firstorcreate(&us","20}).firstorinit(&us","21","21:34:10&apo","22","22}).find(&us","23","29","2@example.com"","2@example@example.com"","3","3).scan(&result","30","30}).firstorcreate(&us","30}).firstorinit(&us","4,5,6","42).row","99","abil","abov","activ","active=tru","actived=fals","add","address","address1","address{address1","afterupd","ag","age").find(&us","age").where("nam","age=100","age=18","age=30","amount","amountgreaterthan1000(db","amp","amp;ag","amp;nam","anim","animal.nam","animals("age"","animal{ag","anoth","api","apos;100&apo","apos;2&apo","apos;2013","apos;active&apo","apos;admin&apo","apos;cancelled&apo","apos;en&apo","apos;galeone&apo","apos;jinzhu","apos;jinzhu&apo","apos;jinzhu'").or(map[string]interface{}{"name"","apos;jinzhu'").or(user{nam","apos;non_existing&apo","apos;super_admin&apo","apos;zh&apo","argument","assgin","assign","associ","attr","attribut","automat","avoid","back","batch","bcrypt.generatefrompassword(user.password","befor","beforecr","beforecreate(scop","beforesav","beforesave(scop","beforeupd","begin","belong","below","between","billingaddress","birthday","birthday='2016","blank","call","callback","cancel","card","carefulli","chain","chainabl","chang","check","coalesce(age,'42&apo","cod","code","column","combin","commit","condit","conflict","conflict").create(&product","connect","count","creat","credit","credit_card","credit_cards.user_id","crud","current","custom","data","databas","date","db","db.create(&anim","db.create(&us","db.delete(&email","db.delete(&us","db.delete(email","db.find(&us","db.find(&users).pluck("age"","db.first(&us","db.firstorcreate(&us","db.firstorinit(&us","db.joins("join","db.last(&us","db.limit(10).find(&users1).limit","db.limit(3).find(&us","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{nam","db.model(&user).updates(map[string]interface{}{"name"","db.model(&user).updates(user{nam","db.model(&user).where("act","db.model(&user{}).pluck("name"","db.model(&user{}).where("nam","db.model(user{}).updates(user{nam","db.newrecord(us","db.not("nam","db.not("name"","db.not([]int64{1,2,3}).first(&us","db.not([]int64{}).first(&us","db.not(user{nam","db.offset(10).find(&users1).offset","db.offset(3).find(&us","db.order("ag","db.order("orders.amount","db.preload("orders"","db.preload("orders").find(&us","db.preload("orders").preload("profile").preload("role").find(&us","db.preload("orders.orderitems").find(&us","db.raw("select","db.save(&us","db.scopes(amountgreaterthan1000","db.scopes(amountgreaterthan1000).where("statu","db.scopes(orderstatus([]string{"paid"","db.select("nam","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(&us","db.table("deleted_users").find(&deleted_us","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("nam","db.table("users").select("users.nam","db.table("users").where("id","db.unscoped().delete(&ord","db.unscoped().where("ag","db.where(&user{nam","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([]int64{20","db.where(map[string]interface{}{"name"","db.where(user{nam","default","defin","definit","delet","deleted_at","deleted_at="2013","deleted_us","deletedat","deletedat'","desc","desc"","desc").find(&users1).order("age"","desc").order("name").find(&us","detail","don't","dynam","eager","email","emails.email","emails.email").joins("left","emails.user_id","email{{email","ensur","err","error","even","exampl","exist","express","extra","fals","false).create(&us","false).save(&us","field","field'","fields'","find","find(&us","first","firstorcr","firstorinit","found","func","func(*db","func(db","given","gorm","gorm.db","gorm.expr("pric","gorm.expr("quant","gorm.scop","gorm:"default:'galeone'"","gorm:save_associ","greater","group","gt","have","haven't","id","id=10","id=111","ignor","includ","init","inject","inlin","insert","int","int64","int{10","it'","jinzhu&apo","join","key","languag","language{{nam","last","lastweek","lastweek).find(&us","limit","load","lt;>","mani","map","map[string]interfac","map[string]interface{}{"age"","map[string]interface{}{"name"","match","mdoel'","method","model","more","multipl","name","name").find(&us","name,billing_address_id,shipping_address_id","name='hello&apo","name='jinzhu","need","nest","new","nil","non","none","not(nam","note","noth","null","number","offset","omit","on","oper","optim","option","order","orders.amount","orderstatus(statu","overwrit","paid","paidwithcod(db","paidwithcod).find(&ord","paidwithcreditcard(db","paidwithcreditcard).find(&ord","paramet","pass","perform","perman","plain","pluck","preload","price","primari","product","profil","pw","quantiti","queri","quot","quot;%jin%").find(&us","quot;%jinhu%"","quot;%jinzhu%"","quot;%jinzhu%").delete(email","quot;"","quot;,"jinzhu").where("ag","quot;,20,"admin").find(&us","quot;22").find(&us","quot;411111111111").find(&us","quot;active").preload("orders"","quot;actived"","quot;addresses"","quot;admin").or("rol","quot;age"","quot;age"}).find(&us","quot;bil","quot;c"","quot;cancelled").find(&us","quot;code"","quot;email","quot;emails"","quot;en"","quot;for","quot;hello"","quot;id"","quot;jinzhu","quot;jinzhu"","quot;jinzhu").count(&count","quot;jinzhu").delet","quot;jinzhu").find(&us","quot;jinzhu").first(&us","quot;jinzhu").or("nam","quot;jinzhu"}).assign(user{ag","quot;jinzhu"}).attrs(user{ag","quot;jinzhu"}).first(&us","quot;jinzhu"}).firstorcreate(&us","quot;jinzhu"}).firstorinit(&us","quot;jinzhu@example.com"","quot;jinzhu@example.org").joins("join","quot;languages"","quot;nam","quot;name"","quot;non_existing"","quot;non_existing"}).assign(user{ag","quot;non_existing"}).attrs("age"","quot;non_existing"}).attrs(user{ag","quot;on","quot;opt","quot;paid").preload("orders.orderitems").find(&us","quot;price"","quot;products"","quot;quantity"","quot;ship","quot;shipped"})).find(&ord","quot;stat","quot;super_admin").find(&us","quot;super_admin").not("nam","quot;updated_at"","quot;user_id","language_id"","quot;users"","quot;zh"","raw","read","record","refer","regardless","reorder","request","result","retriev","return","role","row","rows.next","rowsaffect","run","same","save","scan","scope","scope.setcolumn","scope.setcolumn("encryptedpassword"","scope.setcolumn("id"","select","set","ship","shippingaddress","similar","singl","skip","slice","soft","specifi","sql","start","state","statu","string","string{"jinzhu"","struct","sum(amount","tabl","tag","those","time","time.now","time.tim","timestamp","today).find(&us","total","total").group("date(created_at)").having("sum(amount","total").group("date(created_at)").row","transact","true","true).find(&users2","true).update("name"","type","unfound","unknown","unknown)").delete(&email","unknown)").update("nam","unscop","upda","updat","update").first(&us","updatecolumn","updated_at","updated_at='2013","updatedat","us","user","user'","user.ag","user.nam","user_id","user_id,email","user_languag","users.id","users.id").row","users.id").scan(&result","users.id").where("credit_cards.numb","users1","users2","user{ag","user{id","user{nam","uuid.new","valid","valu","values('99&apo","var","want","warn","without","won't","work","write","zero"],"database.html":["1st","2nd","3rd","4th","_","abov","add","ag","amp;ord","amp;product","append","auto","automat","automigr","chang","check","column","column'","connect","creat","data","databas","database'","date","db","db.automigrate(&us","db.close","db.createtable(&us","db.droptable(&us","db.droptable("users"","db.droptableifexists(&us","db.hastable(&us","db.hastable("users"","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","driver","driver/mysql"","drop","dropcolumn","easier","err","exampl","exist","field","first","foreign","foreignkey","func","given","gorm","gorm.open("mysql"","gorm.open("postgres"","gorm.open("sqlite3"","handl","https://github.com/jinzhu/gorm/blob/master/dialect.go","idx_user_nam","idx_user_name_ag","import","includ","index","keep","key","main","migrat","miss","model","model'","modifi","modifycolumn","more","multipl","mysql","name","need","note","offici","ondelet","onupd","order","param","paramet","parsetim","password=mypassword"","path","postgresql","product","protect","quot;/tmp/gorm.db"","quot;age"","quot;cities(id)"","quot;engine=innodb"","quot;engine=innodb").automigrate(&us","quot;engine=innodb").createtable(&us","quot;github.com/go","quot;github.com/jinzhu/gorm"","quot;github.com/jinzhu/gorm/dialects/mssql"","quot;github.com/jinzhu/gorm/dialects/mysql"","quot;github.com/jinzhu/gorm/dialects/postgres"","quot;github.com/jinzhu/gorm/dialects/sqlite"","quot;host=myhost","quot;name"","quot;products"","quot;restrict"","quot;text"","quot;user:password@/dbname?charset=utf8&parsetime=true&loc=local"","refer","rememb","remov","schema","sql","sqlite3","sslmode=dis","statement","suffix","support","tabl","table(id","text","time.tim","type","uniqu","unsupport","unus","updat","user","user=gorm","user`'","valu","warn","won't","wrap","write"],"development.html":["1","20","30","_draft","abov","afterdelet","afterqueri","api","append","architectur","avail","base","befor","beforecr","beforeupd","bridg","call","callback","chain","chainabl","check","creat","crud","current","custom","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(&us","db.where("act","db.where("ag","db.where("nam","dbname=gorm","default","defiend","defin","delet","develop","each","err","even","exampl","exist","filter","fulli","func","function","gorm","gorm.db","gorm.open("postgres"","gorm.scop","gorm:creat","https://godoc.org/github.com/jinzhu/gorm","instanc","itself","more","name","new","newcreatefunct","nowfunc","on","oper","operation'","order","out","perform","plugin","power","pre","process","queri","quot","quot;_draft"","quot;jinzhu"","quot;user=gorm","refer","regist","relat","replac","row","row_queri","run","scope","scope.hascolumn("created"","scope.search.table(scope.tablenam","scope.setcolumn("created"","somecondit","sslmode=disable"","start","tabl","type","updat","updatecr","updatecreated(scop","updatetablenam","updatetablename(scop","us","view","want","write","yetanothercondit"],"models.html":["255","add","address","address1","address2","affect","ag","age_of_the_beast","anim","animalid","apos;user_languages&apo","appli","base","beast_id","belong","billingaddress","billingaddressid","birthday","bool","case","chang","code","column","combin","convent","creat","created_at","createdat","creditcard","creditcard'","current","databas","day_of_the_beast","db","db.create(&us","db.model(&user).update("createdat"","db.model(&user).update("name"","db.save(&us","db.singulartable(tru","default","defaulttablenam","defaulttablenamehandl","defin","definit","delet","deletedat","deletedat'","disabl","email","email'","emb","exist","field","field'","find","findabl","foreign","func","global","gorm.db","gorm.defaulttablenamehandl","gorm.model","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"","have","id","ignor","ignorem","includ","index","int","int64","join","key","languag","mani","model","model'","name","name'","need","null"","null;unique"","nullabl","num","number","on","overrid","plural","post","primari","primary_key","profil","queri","quot","quot;admin"","quot;admin_users"","quot;jinzhu"","quot;prefix_"","quot;profiles"","quot;users"","record","record'","refer","relationship","reset","return","rule","same","save","set","shippingaddress","shippingaddressid","size","snake","soft","sql","sql.nullint64","sql.nullstr","store","string","struct","subscrib","tabl","tablenam","tag","those","time","time.now","time.tim","true","type","u","u.rol","uint","uniqu","unique_index","updat","updatedat","us","user","user'","user`'","userid","valu","version","want","won't","work","write"]},"length":9},"tokenStore":{"root":{"0":{"0":{"0":{"1":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}},"docs":{}},"docs":{}},"1":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"2":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}},"1":{"0":{"0":{"0":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}}},"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}},"docs":{"curd.html":{"ref":"curd.html","tf":0.004491017964071856}},":":{"2":{"3":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}},"docs":{}},"docs":{}}},"1":{"1":{"docs":{"associations.html":{"ref":"associations.html","tf":0.010869565217391304},"curd.html":{"ref":"curd.html","tf":0.008483033932135729}}},"2":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}},"docs":{"curd.html":{"ref":"curd.html","tf":0.0054890219560878245}},"}":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"3":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}},"docs":{}},"7":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00499001996007984}}},"8":{"docs":{"curd.html":{"ref":"curd.html","tf":0.003992015968063872}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"docs":{"./":{"ref":"./","tf":0.015384615384615385},"curd.html":{"ref":"curd.html","tf":0.0074850299401197605},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}},";":{"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":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"2":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}},"docs":{}}}}}}}}}}}}}}}}}},",":{"2":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},",":{"3":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},",":{"4":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992}}},"docs":{}}},"docs":{}}},"docs":{}},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"2":{"0":{"0":{"0":{"docs":{"./":{"ref":"./","tf":0.015384615384615385}}},"docs":{}},"docs":{"curd.html":{"ref":"curd.html","tf":0.011976047904191617},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}},"1":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},":":{"3":{"4":{"docs":{},":":{"1":{"0":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00499001996007984}}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"2":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"3":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}},"5":{"5":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}},"docs":{}},"9":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}},"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}}}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}}}}}}}}}}}}}}}}}}}}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"3":{"0":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"}":{"docs":{},")":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"4":{"2":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}},"docs":{},",":{"5":{"docs":{},",":{"6":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"docs":{}}},"docs":{}},"t":{"docs":{},"h":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"9":{"9":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"docs":{}},"docs":{},"_":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"database.html":{"ref":"database.html","tf":0.026402640264026403}},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"associations.html":{"ref":"associations.html","tf":0.03695652173913044},"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"curd.html":{"ref":"curd.html","tf":0.0054890219560878245}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"database.html":{"ref":"database.html","tf":0.006600660066006601}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992},"database.html":{"ref":"database.html","tf":0.026402640264026403},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}},"2":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}},"docs":{"curd.html":{"ref":"curd.html","tf":0.003992015968063872},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"{":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}},"docs":{}}}}}}}}}}}}}}},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.015197568389057751},"curd.html":{"ref":"curd.html","tf":0.020459081836327345},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"1":{"0":{"0":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"docs":{}},"8":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}},"docs":{}},"3":{"0":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"docs":{}},"docs":{}},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"associations.html":{"ref":"associations.html","tf":0.013043478260869565},"curd.html":{"ref":"curd.html","tf":0.00249500998003992}},";":{"docs":{},"a":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}}}},"u":{"docs":{},"s":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"0":{"0":{"0":{"1":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}},"docs":{}},"docs":{}},"docs":{}},"1":{"0":{"0":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"docs":{}},"docs":{}},"2":{"0":{"1":{"3":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992}}},"docs":{}},"docs":{}},"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}}}}}},"docs":{},"d":{"docs":{},"b":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}},"t":{"docs":{},"x":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00499001996007984}},"s":{"docs":{},";":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}},"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":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"l":{"docs":{},"i":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"c":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}}}}}},"i":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.013824884792626729}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}},"r":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"e":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"d":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}}},"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.009216589861751152}}}}}}}}}}}},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"t":{"docs":{},"x":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"models.html":{"ref":"models.html","tf":0.003861003861003861}},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.005791505791505791}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"development.html":{"ref":"development.html","tf":0.009216589861751152},"models.html":{"ref":"models.html","tf":0.003861003861003861}}}},"c":{"docs":{},"k":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"e":{"docs":{},"/":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}},"c":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"associations.html":{"ref":"associations.html","tf":0.010869565217391304},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"s":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"callbacks.html":{"ref":"callbacks.html","tf":0.015544041450777202},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}}}}},"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":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}},"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.007722007722007722}},"=":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"2":{"0":{"1":{"6":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.013824884792626729}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"callbacks.html":{"ref":"callbacks.html","tf":0.05699481865284974},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.004491017964071856},"development.html":{"ref":"development.html","tf":0.11981566820276497}}}}}}}},"r":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}},"s":{"docs":{},"e":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"models.html":{"ref":"models.html","tf":0.003861003861003861}}}},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.015544041450777202},"changelog.html":{"ref":"changelog.html","tf":0.023923444976076555},"curd.html":{"ref":"curd.html","tf":0.005988023952095809},"database.html":{"ref":"database.html","tf":0.006600660066006601},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}},"i":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.009216589861751152}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.006600660066006601},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}},"o":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"e":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"o":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.009900990099009901}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.005988023952095809}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}}}},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"curd.html":{"ref":"curd.html","tf":0.003992015968063872}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"database.html":{"ref":"database.html","tf":0.0231023102310231},"models.html":{"ref":"models.html","tf":0.023166023166023165}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},",":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"4":{"2":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"curd.html":{"ref":"curd.html","tf":0.006986027944111776},"database.html":{"ref":"database.html","tf":0.019801980198019802},"development.html":{"ref":"development.html","tf":0.03686635944700461},"models.html":{"ref":"models.html","tf":0.013513513513513514}},"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":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}},"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.00303951367781155}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"models.html":{"ref":"models.html","tf":0.019305019305019305}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"s":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.015217391304347827},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}},"u":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"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.004347826086956522}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008695652173913044},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.009216589861751152},"models.html":{"ref":"models.html","tf":0.011583011583011582}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.006600660066006601}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0182370820668693},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.003493013972055888},"database.html":{"ref":"database.html","tf":0.026402640264026403},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}},"e":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}},"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":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}},"b":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"database.html":{"ref":"database.html","tf":0.009900990099009901},"development.html":{"ref":"development.html","tf":0.02304147465437788},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},".":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"database.html":{"ref":"database.html","tf":0.009900990099009901}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}},"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":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}},"docs":{}},"docs":{}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"f":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.015384615384615385}}}}}}}}},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"c":{"docs":{},"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":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}},";":{"docs":{},")":{"docs":{},".":{"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":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}},"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":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"z":{"docs":{},"h":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}},"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":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}},"{":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"docs":{}},"3":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}},"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":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"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":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}},"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":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"{":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}},"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":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"i":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"curd.html":{"ref":"curd.html","tf":0.00499001996007984},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.009216589861751152}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"c":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"s":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{},"{":{"2":{"0":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0054890219560878245}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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.004784688995215311}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}},"[":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}},"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"docs":{}},"3":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}},"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"database.html":{"ref":"database.html","tf":0.009900990099009901}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933},"curd.html":{"ref":"curd.html","tf":0.003493013972055888},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.013513513513513514}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.009216589861751152},"models.html":{"ref":"models.html","tf":0.003861003861003861}},"i":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.007722007722007722}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"associations.html":{"ref":"associations.html","tf":0.006521739130434782},"callbacks.html":{"ref":"callbacks.html","tf":0.025906735751295335},"curd.html":{"ref":"curd.html","tf":0.0124750499001996},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.02304147465437788},"models.html":{"ref":"models.html","tf":0.009652509652509652}},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.028708133971291867},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"=":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"2":{"0":{"1":{"3":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992}}}}},"a":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.011583011583011582}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"s":{"docs":{},"c":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.013201320132013201}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"database.html":{"ref":"database.html","tf":0.009900990099009901}},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.019801980198019802}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"e":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}},"c":{"docs":{},"h":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"r":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"advanced.html":{"ref":"advanced.html","tf":0.0364741641337386},"callbacks.html":{"ref":"callbacks.html","tf":0.031088082901554404},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.0029940119760479044},"database.html":{"ref":"database.html","tf":0.009900990099009901},"development.html":{"ref":"development.html","tf":0.004608294930875576}},"o":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.03951367781155015},"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"callbacks.html":{"ref":"callbacks.html","tf":0.025906735751295335},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"u":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"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.004784688995215311}}}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}},"r":{"docs":{},"a":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00499001996007984}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.009900990099009901},"development.html":{"ref":"development.html","tf":0.018433179723502304},"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.013043478260869565},"curd.html":{"ref":"curd.html","tf":0.0054890219560878245},"models.html":{"ref":"models.html","tf":0.007722007722007722}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}}}}}},"{":{"docs":{},"{":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}},"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.004784688995215311}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}},"f":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}},"l":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.003992015968063872}},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.015384615384615385}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"associations.html":{"ref":"associations.html","tf":0.006521739130434782},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933},"curd.html":{"ref":"curd.html","tf":0.010479041916167664},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"models.html":{"ref":"models.html","tf":0.04054054054054054}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}}},"s":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}},"x":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"database.html":{"ref":"database.html","tf":0.0033003300330033004}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.015384615384615385}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"n":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.003992015968063872},"database.html":{"ref":"database.html","tf":0.009900990099009901},"development.html":{"ref":"development.html","tf":0.009216589861751152},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}},"(":{"docs":{},"*":{"docs":{},"d":{"docs":{},"b":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"d":{"docs":{},"b":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.00499001996007984}}}}},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.02608695652173913},"database.html":{"ref":"database.html","tf":0.009900990099009901},"models.html":{"ref":"models.html","tf":0.009652509652509652}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}},"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":{"./":{"ref":"./","tf":0.007692307692307693}},"/":{"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.004784688995215311}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"database.html":{"ref":"database.html","tf":0.009900990099009901}}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933}}}}}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.004491017964071856},"database.html":{"ref":"database.html","tf":0.006600660066006601},"development.html":{"ref":"development.html","tf":0.02304147465437788}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"associations.html":{"ref":"associations.html","tf":0.043478260869565216},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"models.html":{"ref":"models.html","tf":0.011583011583011582}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"3":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}},"docs":{}}}}}}},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.006986027944111776},"development.html":{"ref":"development.html","tf":0.009216589861751152},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}},"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.0019305019305019305}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.009216589861751152}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}},":":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}},";":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"2":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},":":{"docs":{},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{},"_":{"docs":{},"k":{"docs":{},"_":{"docs":{},"u":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},":":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}},":":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"2":{"5":{"5":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.009216589861751152}}}}}}}}}},"o":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.015197568389057751}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.013972055888223553}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}},":":{"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.007692307692307693}}}}}}}}}}}}}}}}}}},"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.007692307692307693}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.007692307692307693}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}},"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.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.015197568389057751},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}}}}}},"s":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}},"v":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}},"_":{"docs":{},"t":{"docs":{},"_":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"associations.html":{"ref":"associations.html","tf":0.008695652173913044},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.0074850299401197605},"models.html":{"ref":"models.html","tf":0.02702702702702703}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}},"=":{"1":{"0":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}},"1":{"1":{"docs":{"curd.html":{"ref":"curd.html","tf":0.003992015968063872}}},"docs":{}},"docs":{}},"docs":{}},"x":{"docs":{},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933},"database.html":{"ref":"database.html","tf":0.036303630363036306}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}},"n":{"docs":{},"c":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.008982035928143712}}}}}},"t":{"6":{"4":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"models.html":{"ref":"models.html","tf":0.007722007722007722}},"{":{"1":{"1":{"docs":{},",":{"2":{"2":{"docs":{},",":{"3":{"3":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.015217391304347827},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.015444015444015444}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}}}}}}}}},"{":{"1":{"0":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"docs":{}},"docs":{}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}},"i":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.019138755980861243}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.026402640264026403},"models.html":{"ref":"models.html","tf":0.009652509652509652}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"e":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"curd.html":{"ref":"curd.html","tf":0.0029940119760479044},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"associations.html":{"ref":"associations.html","tf":0.041304347826086954},"curd.html":{"ref":"curd.html","tf":0.006487025948103792},"database.html":{"ref":"database.html","tf":0.009900990099009901},"models.html":{"ref":"models.html","tf":0.015444015444015444}}},"e":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.015384615384615385}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0054890219560878245}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0243161094224924}}}}},"i":{"docs":{},"c":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}}}}},"o":{"docs":{},"k":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.010869565217391304},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"e":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.010869565217391304}}}},"{":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"k":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}},";":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.004491017964071856}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"database.html":{"ref":"database.html","tf":0.009900990099009901}}}},"n":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.023076923076923078},"associations.html":{"ref":"associations.html","tf":0.02391304347826087},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.007722007722007722}}},"y":{"2":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}},"docs":{}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.00249500998003992}}}}},"d":{"docs":{},"e":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}},"k":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.004491017964071856}},"[":{"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"e":{"docs":{},"{":{"docs":{},"}":{"docs":{},"{":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"database.html":{"ref":"database.html","tf":0.0165016501650165}}}}}},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}},"s":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}},"d":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008695652173913044}},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933},"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"database.html":{"ref":"database.html","tf":0.0165016501650165},"models.html":{"ref":"models.html","tf":0.011583011583011582}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.0029940119760479044},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"l":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.009900990099009901}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.015197568389057751},"associations.html":{"ref":"associations.html","tf":0.034782608695652174},"changelog.html":{"ref":"changelog.html","tf":0.028708133971291867},"curd.html":{"ref":"curd.html","tf":0.027445109780439122},"database.html":{"ref":"database.html","tf":0.013201320132013201},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.06177606177606178}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}},",":{"docs":{},"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00499001996007984}}}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}},"h":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"w":{"docs":{},".":{"docs":{},"m":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"0":{"0":{"0":{"1":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},"e":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.006600660066006601},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.03225806451612903}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.009216589861751152}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}},"s":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"u":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}},"l":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.019138755980861243},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}},";":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.010869565217391304},"curd.html":{"ref":"curd.html","tf":0.00249500998003992},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.015444015444015444}},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.015384615384615385}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.010978043912175649},"database.html":{"ref":"database.html","tf":0.006600660066006601},"development.html":{"ref":"development.html","tf":0.009216589861751152}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"callbacks.html":{"ref":"callbacks.html","tf":0.04145077720207254}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.015197568389057751},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.018433179723502304}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}},"o":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.005988023952095809}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"u":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"development.html":{"ref":"development.html","tf":0.004608294930875576}}}},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"(":{"docs":{},"d":{"docs":{},"b":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.013201320132013201}},"e":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}},"t":{"docs":{},"h":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"development.html":{"ref":"development.html","tf":0.013824884792626729}}}}},"c":{"docs":{},"k":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.005791505791505791}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"associations.html":{"ref":"associations.html","tf":0.008695652173913044}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}},"o":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}},"s":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}},"r":{"docs":{},"e":{"docs":{"development.html":{"ref":"development.html","tf":0.009216589861751152}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.003493013972055888}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.023076923076923078},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"associations.html":{"ref":"associations.html","tf":0.006521739130434782},"curd.html":{"ref":"curd.html","tf":0.007984031936127744},"models.html":{"ref":"models.html","tf":0.009652509652509652}}},"y":{"docs":{},"_":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}},"n":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.046153846153846156},"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.0033003300330033004}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.05},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008695652173913044}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"development.html":{"ref":"development.html","tf":0.009216589861751152}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"development.html":{"ref":"development.html","tf":0.013824884792626729}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"w":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.014354066985645933},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.02735562310030395},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.021457085828343315},"development.html":{"ref":"development.html","tf":0.018433179723502304},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},";":{"2":{"2":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"4":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"database.html":{"ref":"database.html","tf":0.009900990099009901}}}}}}},"/":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.015384615384615385}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},";":{"docs":{},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}},"\\":{"docs":{},"r":{"docs":{},"\\":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.005988023952095809}}}}}}}}}}},"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.0033003300330033004}}}}}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"curd.html":{"ref":"curd.html","tf":0.004491017964071856}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.011976047904191617},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},".":{"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":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"@":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}},";":{"docs":{},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}},":":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"=":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},";":{"docs":{},")":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992},"database.html":{"ref":"database.html","tf":0.006600660066006601}},";":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}},"%":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"%":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"%":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"%":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},";":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}},",":{"2":{"0":{"docs":{},",":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"=":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}},";":{"docs":{},")":{"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":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"database.html":{"ref":"database.html","tf":0.013201320132013201}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.005988023952095809}},";":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"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":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"p":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"p":{"docs":{},"a":{"docs":{},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"}":{"docs":{},")":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}},"/":{"docs":{},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}}}}}}}}}},"_":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.010978043912175649},"development.html":{"ref":"development.html","tf":0.03225806451612903},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"a":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"development.html":{"ref":"development.html","tf":0.009216589861751152}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008695652173913044},"models.html":{"ref":"models.html","tf":0.009652509652509652}}}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.014471057884231538},"models.html":{"ref":"models.html","tf":0.007722007722007722}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"models.html":{"ref":"models.html","tf":0.011583011583011582}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.006521739130434782},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}}}},"e":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.015197568389057751},"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"callbacks.html":{"ref":"callbacks.html","tf":0.025906735751295335},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.0054890219560878245},"models.html":{"ref":"models.html","tf":0.007722007722007722}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.006521739130434782},"development.html":{"ref":"development.html","tf":0.013824884792626729}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.03686635944700461}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}},"a":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"n":{"docs":{},"g":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"callbacks.html":{"ref":"callbacks.html","tf":0.025906735751295335}}}}}}},"e":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992}}}},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"development.html":{"ref":"development.html","tf":0.018433179723502304}},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}}}}}},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}}}}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}},"_":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.009216589861751152}}},"l":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}},"a":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"development.html":{"ref":"development.html","tf":0.004608294930875576}},".":{"docs":{},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0182370820668693},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.010479041916167664},"database.html":{"ref":"database.html","tf":0.006600660066006601},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},".":{"docs":{},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0364741641337386}}}}},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}},"docs":{}},"docs":{}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"3":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601}}},"docs":{}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"development.html":{"ref":"development.html","tf":0.009216589861751152}}}},"t":{"docs":{},"e":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}},"u":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"associations.html":{"ref":"associations.html","tf":0.043478260869565216},"curd.html":{"ref":"curd.html","tf":0.001996007984031936},"models.html":{"ref":"models.html","tf":0.032818532818532815}},"{":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"associations.html":{"ref":"associations.html","tf":0.05434782608695652},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.009481037924151697},"models.html":{"ref":"models.html","tf":0.032818532818532815}}}}}},"o":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}},"r":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.011583011583011582}}}}}},"e":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.012974051896207584},"models.html":{"ref":"models.html","tf":0.03088803088803089}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.008695652173913044},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.03592814371257485}}}}},"f":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.015544041450777202}}}}},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.001996007984031936}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"z":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.006521739130434782}},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}},"f":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.00249500998003992},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.015217391304347827},"curd.html":{"ref":"curd.html","tf":0.003493013972055888}}}},"a":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"database.html":{"ref":"database.html","tf":0.006600660066006601}}}}}}},"r":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}},"m":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}},"p":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"v":{"docs":{},"e":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.031088082901554404},"curd.html":{"ref":"curd.html","tf":0.00499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}}}}}},"_":{"docs":{},"k":{"docs":{},"_":{"docs":{},"u":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"k":{"docs":{},"u":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}},"i":{"docs":{},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.003493013972055888}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}},"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.0033003300330033004}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}},"x":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0243161094224924},"callbacks.html":{"ref":"callbacks.html","tf":0.05181347150259067},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}},"u":{"docs":{},"e":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"2":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}},"docs":{}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"associations.html":{"ref":"associations.html","tf":0.05652173913043478},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.00249500998003992},"database.html":{"ref":"database.html","tf":0.009900990099009901},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.02895752895752896}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"database.html":{"ref":"database.html","tf":0.056105610561056105},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.017374517374517374}},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.009652509652509652}}}}}}}},"g":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.005791505791505791}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"models.html":{"ref":"models.html","tf":0.023166023166023165}},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"models.html":{"ref":"models.html","tf":0.015444015444015444}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"x":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465}}}}}}}}}},"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.006521739130434782},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.00249500998003992},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}},"o":{"docs":{},"y":{"docs":{"associations.html":{"ref":"associations.html","tf":0.010869565217391304}}},"d":{"docs":{},"b":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"models.html":{"ref":"models.html","tf":0.0019305019305019305}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"associations.html":{"ref":"associations.html","tf":0.013043478260869565},"models.html":{"ref":"models.html","tf":0.009652509652509652}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}},")":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.009900990099009901}}}}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"database.html":{"ref":"database.html","tf":0.006600660066006601},"models.html":{"ref":"models.html","tf":0.003861003861003861}},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"t":{"docs":{"./":{"ref":"./","tf":0.015384615384615385},"callbacks.html":{"ref":"callbacks.html","tf":0.031088082901554404},"changelog.html":{"ref":"changelog.html","tf":0.019138755980861243},"curd.html":{"ref":"curd.html","tf":0.033932135728542916},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"development.html":{"ref":"development.html","tf":0.009216589861751152},"models.html":{"ref":"models.html","tf":0.005791505791505791}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.015444015444015444}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}},"=":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"2":{"0":{"1":{"3":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00249500998003992}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"u":{"docs":{},"s":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.013824884792626729}},"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.004608294930875576}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007692307692307693}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622}}}}}},"s":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00911854103343465},"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"changelog.html":{"ref":"changelog.html","tf":0.023923444976076555},"curd.html":{"ref":"curd.html","tf":0.005988023952095809},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.025096525096525095}},"a":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0121580547112462},"associations.html":{"ref":"associations.html","tf":0.03695652173913044},"callbacks.html":{"ref":"callbacks.html","tf":0.02072538860103627},"changelog.html":{"ref":"changelog.html","tf":0.019138755980861243},"curd.html":{"ref":"curd.html","tf":0.04740518962075848},"database.html":{"ref":"database.html","tf":0.019801980198019802},"models.html":{"ref":"models.html","tf":0.019305019305019305}},"s":{"1":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}},"2":{"docs":{"curd.html":{"ref":"curd.html","tf":0.0014970059880239522}}},"docs":{},";":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},";":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"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":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.010869565217391304},"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"curd.html":{"ref":"curd.html","tf":0.0029940119760479044}},",":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.013043478260869565},"models.html":{"ref":"models.html","tf":0.007722007722007722}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522}}}}},".":{"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":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"i":{"docs":{},"d":{"docs":{"curd.html":{"ref":"curd.html","tf":0.00499001996007984}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"curd.html":{"ref":"curd.html","tf":0.003493013972055888}}}}}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}}},"`":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"database.html":{"ref":"database.html","tf":0.009900990099009901},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}}}}}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}}}}},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}}},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}}},"r":{"docs":{},"i":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}}}}},"v":{"1":{"docs":{},".":{"0":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311}}},"docs":{}}},"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231},"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.00249500998003992}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}},"e":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.002173913043478261},"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}},"u":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.010362694300518135},"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.014970059880239521},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"models.html":{"ref":"models.html","tf":0.003861003861003861}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"9":{"9":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676}}}}}},"e":{"docs":{},"w":{"docs":{"development.html":{"ref":"development.html","tf":0.009216589861751152}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}}}},"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.007692307692307693}}}}}}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"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":{"advanced.html":{"ref":"advanced.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.004784688995215311},"curd.html":{"ref":"curd.html","tf":0.0014970059880239522},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}},"n":{"docs":{},"&":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},";":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.004347826086956522},"changelog.html":{"ref":"changelog.html","tf":0.009569377990430622},"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"database.html":{"ref":"database.html","tf":0.0033003300330033004},"models.html":{"ref":"models.html","tf":0.003861003861003861}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007692307692307693},"curd.html":{"ref":"curd.html","tf":0.000499001996007984},"database.html":{"ref":"database.html","tf":0.013201320132013201},"development.html":{"ref":"development.html","tf":0.013824884792626729},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}}},"a":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0060790273556231}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.0051813471502590676},"curd.html":{"ref":"curd.html","tf":0.003493013972055888},"development.html":{"ref":"development.html","tf":0.004608294930875576},"models.html":{"ref":"models.html","tf":0.0019305019305019305}}}},"r":{"docs":{},"n":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000998003992015968},"database.html":{"ref":"database.html","tf":0.0033003300330033004}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"curd.html":{"ref":"curd.html","tf":0.000499001996007984}}}}}},"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.004608294930875576}}}}}}}}}}}}}}}}}}},"length":1556},"corpusTokens":["0","0001","01","01&apo","02","02&apo","02")).update("deleted_at"","1","1"","1").updatecolumn("quantity"","1).find(&users2","1,2","1,2,3","1,2,3,4","10","100","100).row","100).scan(&result","1000","1000"","10:23"","11","111","112","11}).updates(map[string]interface{}{"name"","123","17","18","18}).rowsaffect","1st","2","2&apo","2"","2").find(&users).count(&count","2"}).find(&us","20","20").find(&us","20).delete(&us","20).firstorinit(&us","2000","20}).find(&us","20}).first(&us","20}).firstorcreate(&us","20}).firstorinit(&us","21","21:34:10&apo","22","22}).find(&us","23","255","29","2@example.com"","2@example@example.com"","2nd","3","3).scan(&result","30","30}).firstorcreate(&us","30}).firstorinit(&us","3rd","4,5,6","42).row","4th","99","_","_draft","abil","abov","accord","account","activ","active=tru","actived=fals","add","address","address1","address2","address{address1","advanc","affect","aftercr","aftercreate(scop","aftercreate(tx","afterdelet","afterfind","afterqueri","aftersav","afterupd","ag","age").find(&us","age").row","age").where("nam","age=100","age=18","age=30","age_of_the_beast","aim","alert","alreadi","amount","amountgreaterthan1000(db","amp","amp;ag","amp;email","amp;imag","amp;nam","amp;ord","amp;product","amp;us","anim","animal.nam","animalid","animals("age"","animal{ag","anoth","api","apos;0001","apos;100&apo","apos;2&apo","apos;2013","apos;active&apo","apos;admin&apo","apos;cancelled&apo","apos;db&apo","apos;en&apo","apos;galeone&apo","apos;jinzhu","apos;jinzhu&apo","apos;jinzhu'").or(map[string]interface{}{"name"","apos;jinzhu'").or(user{nam","apos;non_existing&apo","apos;super_admin&apo","apos;tx&apo","apos;user_languages&apo","apos;zh&apo","append","appli","applic","architectur","argument","assgin","assign","associ","attr","attribut","author","auto","automat","automigr","avail","avoid","back","base","batch","bcrypt.generatefrompassword(user.password","beast_id","befor","before/aft","beforecr","beforecreate(scop","beforedelet","beforesav","beforesave(scop","beforeupd","beforeupdate(scop","begin","belong","belongs_to","below","between","billingaddress","billingaddressid","birthday","birthday='2016","blank","bool","break","bridg","builder","built","call","callback","cancel","card","carefulli","case","cat","chain","chainabl","chang","changelog","check","clear","coalesce(age,'42&apo","cod","code","column","column'","combin","come","commit","common","composit","condit","conflict","conflict").create(&product","connect","contain","contributor","convent","convert","correctli","count","creat","create/save/update/delete/find","createanimals(db","created_at","createdat","credit","credit_card","credit_cards.user_id","creditcard","creditcard'","crud","current","custom","customizeaccount","customizeperson","data","databas","database'","database"","date","day_of_the_beast","db","db'","db.automigrate(&product","db.automigrate(&us","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(&anim","db.create(&product{cod","db.create(&us","db.createtable(&us","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(&us","db.delete(email","db.droptable(&us","db.droptable("users"","db.droptableifexists(&us","db.exec("drop","db.exec("upd","db.find(&us","db.find(&users).pluck("age"","db.first(&product","db.first(&us","db.first(&user).limit(10).find(&users).geterror","db.firstorcreate(&us","db.firstorinit(&us","db.hastable(&us","db.hastable("users"","db.joins("join","db.last(&us","db.limit(10).find(&users1).limit","db.limit(3).find(&us","db.logmode(fals","db.logmode(tru","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{nam","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(&languag","db.model(&user).association("languages").replace([]language{languagezh","db.model(&user).association("languages").replace(language{nam","db.model(&user).omit("name").updates(map[string]interface{}{"name"","db.model(&user).related(&card","db.model(&user).related(&credit_card).recordnotfound","db.model(&user).related(&email","db.model(&user).related(&languag","db.model(&user).related(&profil","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{nam","db.model(&user).updates(map[string]interface{}{"name"","db.model(&user).updates(user{nam","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{nam","db.newrecord(us","db.not("nam","db.not("name"","db.not([]int64{1,2,3}).first(&us","db.not([]int64{}).first(&us","db.not(user{nam","db.offset(10).find(&users1).offset","db.offset(3).find(&us","db.order("ag","db.order("orders.amount","db.preload("orders"","db.preload("orders").find(&us","db.preload("orders").preload("profile").preload("role").find(&us","db.preload("orders.orderitems").find(&us","db.raw("select","db.save(&us","db.scanrows(row","db.scopes(amountgreaterthan1000","db.scopes(amountgreaterthan1000).where("statu","db.scopes(orderstatus([]string{"paid"","db.select("nam","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.trac","db.setlogger(log.new(os.stdout","db.singulartable(tru","db.table("deleted_users").count(&count","db.table("deleted_users").createtable(&us","db.table("deleted_users").find(&deleted_us","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("nam","db.table("users").select("users.nam","db.table("users").where("id","db.table("users").where("nam","db.unscoped().delete(&ord","db.unscoped().model(model).where("deleted_at","db.unscoped().where("ag","db.where(&user{nam","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([]int64{20","db.where(map[string]interface{}{"name"","db.where(user{nam","dbname=gorm","debug","default","defaulttablenam","defaulttablenamehandl","defer","defiend","defin","definit","delet","delete'","deleted_at","deleted_at="2013","deleted_us","deletedat","deletedat'","desc","desc"","desc").find(&users1).order("age"","desc").order("name").find(&us","descript","description'","destin","detail","develop","diabl","dialect","disabl","doesn't","dog","don't","driver","driver/mysql"","drop","dropcolumn","dynam","each","eager","easier","easili","edger","email","email'","email").row","emails.email","emails.email").joins("left","emails.user_id","email{{email","emb","enabl","encryptedpassword","enough","ensur","err","error","errors.new("read","errors.new("us","errrecordnotfound","even","exampl","exclud","exist","explicitli","express","extend","extra","fals","false).create(&us","false).save(&us","fantast","featur","field","field'","fields'","fill","filter","find","find(&us","findabl","first","firstorcr","firstorinit","fix","flow","foreign","foreignkey","found","friendli","full","fulli","func","func(*db","func(db","function","futur","gener","geterror","github.com/jinzhu/gorm","github.com/jinzhu/gorm/dialects/postgr","given","global","go","golang","golint","good","gorm","gorm'","gorm.db","gorm.defaulttablenamehandl","gorm.expr("null"","gorm.expr("pric","gorm.expr("quant","gorm.model","gorm.open","gorm.open("mysql"","gorm.open("postgres"","gorm.open("sqlite3"","gorm.scop","gorm:"","gorm:"auto_increment"","gorm:"column:age_of_the_beast"","gorm:"column:beast_id"","gorm:"column:day_of_the_beast"","gorm:"column:s_k_u"","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:"size:255"","gorm:"type:varchar(100);unique"","gorm:"type:varchar(100);unique_index"","gorm:creat","gorm:save_associ","greater","group","gt","h_t_t_p","handl","happen","has_mani","has_on","have","haven't","helper","hstore","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=10","id=111","idaccount","idperson","idx_user_nam","idx_user_name_ag","ignor","ignorem","import","includ","index","init","initi","inject","inlin","inner","insert","instal","instanc","instead","int","int64","int64{11,22,33","interfac","interface{}{&us","int{10","it'","iter","itself","jinzhu","jinzhu&apo","join","keep","key","l1212","languag","languagecod","languageen","language{{nam","last","lastweek","lastweek).find(&us","less","librari","licens","limit","load","log","logger","logic","look","lt","lt;>","made","main","make","mani","many2mani","map","map[string]interfac","map[string]interface{}{"age"","map[string]interface{}{"name"","match","mdoel'","mean","method","migrat","miss","mit","mode","model","model'","modifi","modifycolumn","more","move","mssql","multipl","mysql","name","name'","name").find(&us","name,billing_address_id,shipping_address_id","name='hello&apo","name='jinzhu","necessari","need","nest","new","newcreatefunct","nil","non","none","not(nam","note","noth","now.mustparse("0001","nowfunc","null","null"","null;unique"","nullabl","num","number","object","offici","offset","omit","on","onc","ondelet","onupd","oper","operation'","optim","option","order","orders.amount","orderstatus(statu","orm","out","overrid","overview","overwrit","ownerid","ownertyp","packag","paid","paidwithcod(db","paidwithcod).find(&ord","paidwithcreditcard(db","paidwithcreditcard).find(&ord","panic("fail","param","paramet","parsetim","pass","password=mypassword"","path","perform","perman","ping","plain","pluck","plugin","plural","point","pointer","polymorph","pool","post","postgresql","power","pre","preload","price","primari","primary_key","print","process","product","product'","profil","profileid","profileref","protect","pw","quantiti","queri","quick","quot","quot;%jin%").find(&us","quot;%jinhu%"","quot;%jinzhu%"","quot;%jinzhu%").delete(email","quot;"","quot;,"jinzhu").where("ag","quot;,20,"admin").find(&us","quot;/tmp/gorm.db"","quot;22").find(&us","quot;411111111111").find(&us","quot;\\r\\n"","quot;_draft"","quot;active").preload("orders"","quot;actived"","quot;addresses"","quot;admin"","quot;admin").or("rol","quot;admin_users"","quot;age"","quot;age"}).find(&us","quot;bil","quot;c"","quot;cancelled").find(&us","quot;cities(id)"","quot;cod","quot;code"","quot;creditcard"","quot;de"","quot;email","quot;emails"","quot;en"","quot;engine=innodb"","quot;engine=innodb").automigrate(&us","quot;engine=innodb").createtable(&us","quot;for","quot;giraffe"}).error","quot;github.com/go","quot;github.com/jinzhu/gorm"","quot;github.com/jinzhu/gorm/dialects/mssql"","quot;github.com/jinzhu/gorm/dialects/mysql"","quot;github.com/jinzhu/gorm/dialects/postgres"","quot;github.com/jinzhu/gorm/dialects/sqlite"","quot;github.com/jinzhu/now"","quot;hello","quot;hello"","quot;host=myhost","quot;id"","quot;jinzhu","quot;jinzhu"","quot;jinzhu").count(&count","quot;jinzhu").delet","quot;jinzhu").find(&us","quot;jinzhu").first(&us","quot;jinzhu").first(&user).error","quot;jinzhu").or("nam","quot;jinzhu").row","quot;jinzhu").select("nam","quot;jinzhu"}).assign(user{ag","quot;jinzhu"}).attrs(user{ag","quot;jinzhu"}).first(&us","quot;jinzhu"}).firstorcreate(&us","quot;jinzhu"}).firstorinit(&us","quot;jinzhu@example.com"","quot;jinzhu@example.org").joins("join","quot;l1212"","quot;languages"","quot;languages"."id"","quot;lion"}).error","quot;nam","quot;name"","quot;non_existing"","quot;non_existing"}).assign(user{ag","quot;non_existing"}).attrs("age"","quot;non_existing"}).attrs(user{ag","quot;on","quot;opt","quot;paid").preload("orders.orderitems").find(&us","quot;prefix_"","quot;price"","quot;products"","quot;profiles"","quot;quantity"","quot;restrict"","quot;ship","quot;shipped"})).find(&ord","quot;stat","quot;super_admin").find(&us","quot;super_admin").not("nam","quot;test.db"","quot;text"","quot;updated_at"","quot;user:password@/dbname?charset=utf8&parsetime=true&loc=local"","quot;user=gorm","quot;user_id","language_id"","quot;user_languages"","quot;user_languages"."language_id"","quot;user_languages"."user_id"","quot;users"","quot;zh"","rang","raw","read","record","record'","recordnotfound","refer","regardless","regist","relat","relationship","releas","reload","rememb","remov","renam","reorder","replac","request","reset","result","retriev","return","role","rollback","row","row.scan(&nam","row_queri","rows.clos","rows.next","rows.scan(&nam","rowsaffect","rule","run","s_k_u","same","sampl","save","save/delet","scan","schema","scope","scope.db().model(u).update("role"","scope.hascolumn("created"","scope.search.table(scope.tablenam","scope.setcolumn","scope.setcolumn("created"","scope.setcolumn("encryptedpassword"","scope.setcolumn("id"","script","select","self","set","ship","shipped_at","shippingaddress","shippingaddressid","show","similar","singl","size","skip","sku","slice","snake","soft","somecondit","someth","sourc","source'","special","specif","specifi","sql","sql.db","sql.nullint64","sql.nullstr","sql.row","sqlite3","sslmode=dis","sslmode=disable"","start","state","statement","statu","stop","store","string","string{"jinzhu"","struct","subscrib","suffix","sum(amount","support","sure","tabl","table(id","tablenam","tag","test","text","thing","those","throw","time","time.now","time.tim","timestamp","today).find(&us","todbnam","total","total").group("date(created_at)").having("sum(amount","total").group("date(created_at)").row","toy","transact","true","true).find(&users2","true).update("name"","tx","tx.commit","tx.creat","tx.create(&animal{nam","tx.model(u).update("role"","tx.rollback","type","u","u.id","u.readonli","u.rol","ugli","uint","under","unfound","uniqu","unique_index","unknown","unknown)").delete(&email","unknown)").update("nam","unless","unscop","unsupport","unus","upda","updat","update").first(&us","updatecolumn","updatecr","updatecreated(scop","updated_at","updated_at='2013","updatedat","updatetablenam","updatetablename(scop","upgrad","upper","uri","us","usag","user","user'","user"","user.ag","user.encryptedpassword","user.nam","user=gorm","user_id","user_id,email","user_languag","user`'","userid","userref","users.id","users.id").row","users.id").scan(&result","users.id").where("credit_cards.numb","users1","users2","users;"","user{ag","user{id","user{nam","uuid.new","v1.0","valid","valu","values('99&apo","var","variabl","variable'","version","view","visibl","want","warn","within","without","won't","work","world").first(&user).recordnotfound","wosmvp@gmail.com","wrap","write","yetanothercondit","zero"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ 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'","quick","read","releas","schema","sql","start","string","struct","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\",","\"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,","driver","driver/mysql\"","drivers,","drop","dropcolumn","easier","err","example:","exist","field","first.","foreign","foreignkey","func","given","gorm","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","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","schema","schema,","sql","sqlite3","sslmode=dis","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`","`profil","`tablename`","`type`","`unique_index`","`update`","`updatedat`","`updatedat`,","`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","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,","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","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","updatedat","updatedat,","us","user","user'","user)","userid","valu","value,","version","want","won't","work","write","{","{}","}"],"associations.html":["\"creditcard\")","\"de\"})","\"de\"},","\"languages\"","\"languages\")","\"languages\".\"id\"","\"user_languages\"","\"user_languages\".\"language_id\"","\"user_languages\".\"user_id\"","&","(contain","*","//","////","111","111;","123","123;","=","[]customizeaccount","[]email","[]languag","[]profil","`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.","belong","belongs_to","between","card","cat","check","clear","condit","contain","count","credit_card","creditcard","creditcard,","current","customizeaccount","customizeperson","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","dog","easily.","email","emails,","error,","errors.","example,","explicitli","field","fill","find","foreign","gorm.model","handl","has_many,","has_one,","helper","id","idaccount","idperson","inner","int","join","key","key)","languag","languageen)","languageen})","languages,","like:","mani","many2many,","matched,","mean","method","mode","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,","tabl","thing","those","throw","toy","type","uint","us","user","user'","user_id","userid","userref","valid","var","variabl","variable'","with:","won't","{","}"],"crud.html":["\"\",","\"\"}","\"%jin%\").find(&users)","\"%jinhu%\";","\"%jinzhu%\")","\"%jinzhu%\").delete(email{})","\"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\"","\"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","\"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';","'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{{email:","[]int64","[]int{10,","[]language{{name:","[]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","it'","it,","jinzhu';","join","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","mdoel'","method,","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","diabl","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.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"2":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"1":{"0":{"0":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"}":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},"\"":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},")":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},":":{"2":{"3":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"docs":{}},"docs":{}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"1":{"1":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005494505494505495},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.002055076037813399}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002877106452938759}}}},"2":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"docs":{"crud.html":{"ref":"crud.html","tf":0.004110152075626798}},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"}":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"2":{"3":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}},";":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}},"docs":{}},"7":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004110152075626798}}},"8":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},".":{"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.0004110152075626798}}}}}}}}}}}}}}}},"docs":{"./":{"ref":"./","tf":0.006622516556291391},"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"development.html":{"ref":"development.html","tf":0.004032258064516129}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},".":{"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.0008220304151253596}}}},"docs":{}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}},"\"":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002877106452938759}}}},"2":{"0":{"0":{"0":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}},"docs":{}},"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"\"":{"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.0004110152075626798}}},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.004032258064516129}},".":{"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.0004110152075626798}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002466091245376079}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0036991368680641184}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},".":{"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.0004110152075626798}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}}}}},"1":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},":":{"3":{"4":{"docs":{},":":{"1":{"0":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004110152075626798}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"2":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"}":{"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.0004110152075626798}}}}}}}}}}}}}}}}}},"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"5":{"5":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"docs":{}},"9":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},"docs":{},"n":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},")":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"}":{"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.0016440608302507192}}}}}}}}}}}}}}}}}},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},"@":{"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.0004110152075626798}}}}}}}}},"@":{"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":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}},"3":{"0":{"docs":{},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},")":{"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.0008220304151253596}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}},"docs":{},"r":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}},")":{"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.0008220304151253596},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"4":{"2":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}},"docs":{},"t":{"docs":{},"h":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}},"9":{"9":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"docs":{}},"docs":{},"!":{"docs":{},"=":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}},"\"":{"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.0004110152075626798}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"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.002890173410404624}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}}}}}}},"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.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872}}},"/":{"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.006622516556291391},"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}}}}}},"m":{"docs":{},"s":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}},",":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}},"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.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},".":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}},"/":{"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.002890173410404624}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}}},"}":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467}},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}}}}}}},"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.002890173410404624}},")":{"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"}":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}},"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.002890173410404624}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0032881216605014385}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},"\"":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}}}},"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.002055076037813399}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},".":{"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.0008220304151253596}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}}},"_":{"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.0018315018315018315}},".":{"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.0018315018315018315}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0036991368680641184}},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.004032258064516129}},".":{"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.0004110152075626798}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}},"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.0012330456226880395}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},";":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"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.007575757575757576}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004932182490752158}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},".":{"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.0008220304151253596}}}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}},"@":{"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.0004110152075626798}}}},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"%":{"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.0004110152075626798}}}}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"%":{"docs":{},"\"":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"%":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},".":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}}}},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}},"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.0004110152075626798}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{},"h":{"docs":{},"\"":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"\\":{"docs":{},"r":{"docs":{},"\\":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"_":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}},"(":{"1":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"1":{"1":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}}},"docs":{}},"docs":{},",":{"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},",":{"3":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},",":{"4":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"2":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"docs":{}},"4":{"docs":{},",":{"5":{"docs":{},",":{"6":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"docs":{}}},"docs":{}}},"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}}},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"docs":{}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833}}}}}}}},"e":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}},"r":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934}}}},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}},"h":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.003372681281618887}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}},"d":{"docs":{},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"u":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934}},"s":{"docs":{},"e":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}},"s":{"1":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"2":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}},"\"":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"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.0004110152075626798}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"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.0008220304151253596}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"z":{"docs":{},"h":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"?":{"docs":{},")":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}},"*":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}}}}}}}}}},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"/":{"docs":{},"/":{"docs":{"./":{"ref":"./","tf":0.046357615894039736},"database.html":{"ref":"database.html","tf":0.06647398843930635},"models.html":{"ref":"models.html","tf":0.05733558178752108},"associations.html":{"ref":"associations.html","tf":0.038461538461538464},"crud.html":{"ref":"crud.html","tf":0.030826140567200986},"callbacks.html":{"ref":"callbacks.html","tf":0.08370044052863436},"advanced.html":{"ref":"advanced.html","tf":0.05555555555555555},"development.html":{"ref":"development.html","tf":0.028225806451612902},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"/":{"docs":{},"/":{"docs":{"associations.html":{"ref":"associations.html","tf":0.007326007326007326},"crud.html":{"ref":"crud.html","tf":0.04808877928483354}}}}}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.011560693641618497}},"=":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"crud.html":{"ref":"crud.html","tf":0.002466091245376079},"advanced.html":{"ref":"advanced.html","tf":0.022727272727272728},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"=":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.009157509157509158},"crud.html":{"ref":"crud.html","tf":0.03616933826551583},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"advanced.html":{"ref":"advanced.html","tf":0.020202020202020204},"development.html":{"ref":"development.html","tf":0.03225806451612903},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"=":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"?":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002466091245376079}},"\"":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{"./":{"ref":"./","tf":0.006622516556291391},"crud.html":{"ref":"crud.html","tf":0.015618577887381833},"advanced.html":{"ref":"advanced.html","tf":0.020202020202020204},"development.html":{"ref":"development.html","tf":0.016129032258064516}},"\"":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.023121387283236993},"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.006622516556291391}}}},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"associations.html":{"ref":"associations.html","tf":10.027472527472527},"crud.html":{"ref":"crud.html","tf":0.004521167283189478},"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002466091245376079}}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.005780346820809248}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},"!":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"d":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.023121387283236993},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.002055076037813399}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"2":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833},"crud.html":{"ref":"crud.html","tf":0.0032881216605014385}},"{":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"1":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"docs":{}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":5.002525252525253}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"l":{"docs":{},"i":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}},"c":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.008064516129032258}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}},"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.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}},"c":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"t":{"docs":{},"x":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"e":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}}},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833},"crud.html":{"ref":"crud.html","tf":0.008220304151253596},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}},"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.0008220304151253596}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.007398273736128237}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"=":{"1":{"0":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"docs":{}},"8":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"docs":{}},"3":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"docs":{}},"docs":{}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833}}}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"s":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}},"{":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}},"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.0004110152075626798}}}}}}}},"d":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}},"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.008064516129032258}}}}}}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}},"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.0008220304151253596}},"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.0004110152075626798}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.003372681281618887},"development.html":{"ref":"development.html","tf":0.008064516129032258}}}},"c":{"docs":{},"k":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002466091245376079}}}}}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"associations.html":{"ref":"associations.html","tf":0.009157509157509158},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"s":{"docs":{},"_":{"docs":{},"t":{"docs":{},"o":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}},"w":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.013215859030837005},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"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.0016863406408094434}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"=":{"docs":{},"'":{"2":{"0":{"1":{"6":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},"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.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"g":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"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.0012330456226880395},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.012096774193548387}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"crud.html":{"ref":"crud.html","tf":0.0032881216605014385},"callbacks.html":{"ref":"callbacks.html","tf":10.044052863436123},"development.html":{"ref":"development.html","tf":0.0967741935483871},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"s":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.008064516129032258}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"models.html":{"ref":"models.html","tf":0.00505902192242833},"crud.html":{"ref":"crud.html","tf":0.004932182490752158},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"changelog.html":{"ref":"changelog.html","tf":5.018264840182648}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}},"s":{"docs":{},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"development.html":{"ref":"development.html","tf":0.004032258064516129}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"s":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"o":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"e":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"models.html":{"ref":"models.html","tf":0.0016863406408094434}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.013215859030837005},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}},"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.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}},"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.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.004110152075626798}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.02023121387283237},"models.html":{"ref":"models.html","tf":0.02023608768971332},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}},"?":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"(":{"docs":{},"*":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}}}},"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.0004110152075626798}}}}},"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.006622516556291391},"database.html":{"ref":"database.html","tf":0.017341040462427744},"models.html":{"ref":"models.html","tf":0.011804384485666104},"crud.html":{"ref":"crud.html","tf":0.0036991368680641184},"callbacks.html":{"ref":"callbacks.html","tf":0.013215859030837005},"development.html":{"ref":"development.html","tf":0.028225806451612902}},"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.006622516556291391}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.01011804384485666}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"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.0025252525252525255}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"/":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}}}}},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833},"associations.html":{"ref":"associations.html","tf":0.01098901098901099}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"_":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"s":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"d":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":2.5004110152075625}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.01011804384485666},"associations.html":{"ref":"associations.html","tf":0.007326007326007326},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576},"development.html":{"ref":"development.html","tf":0.004032258064516129}},"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.0018315018315018315}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"crud.html":{"ref":"crud.html","tf":2.5004110152075625},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":10.014450867052023},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"advanced.html":{"ref":"advanced.html","tf":0.015151515151515152}},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}},"b":{"docs":{"development.html":{"ref":"development.html","tf":0.016129032258064516},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},",":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"development.html":{"ref":"development.html","tf":0.004032258064516129}}},".":{"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.006622516556291391}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872}}}}}}}},"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.006622516556291391}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.006622516556291391}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},".":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"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.0025252525252525255}}}},"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.0025252525252525255}}}},"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.013245033112582781}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"development.html":{"ref":"development.html","tf":0.004032258064516129}},".":{"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},".":{"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.0004110152075626798}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}}}}}}}}}},"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.006622516556291391},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}},"_":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}},"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.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}}}}}}}}}},")":{"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.0016863406408094434}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}},"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.0004110152075626798}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}},"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.0018315018315018315}},".":{"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.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0018315018315018315}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}}}}}}}}}},"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.005780346820809248}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}},"[":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"&":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}},"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.0016863406408094434}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}},"[":{"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.0004110152075626798}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},".":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0012330456226880395}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}},"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.0008220304151253596},"development.html":{"ref":"development.html","tf":0.008064516129032258}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"c":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"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.0004110152075626798}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"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.0008220304151253596}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"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.0004110152075626798}}}}}}}}}}}}},"&":{"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.0004110152075626798}}}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{},"{":{"2":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004521167283189478}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}}},"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.0025252525252525255}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.011804384485666104},"crud.html":{"ref":"crud.html","tf":0.002466091245376079},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.004032258064516129},"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.0016863406408094434}},"e":{"docs":{},";":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.008064516129032258}},"i":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.008431703204047217},"associations.html":{"ref":"associations.html","tf":0.005494505494505495},"crud.html":{"ref":"crud.html","tf":0.009864364981504316},"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934},"development.html":{"ref":"development.html","tf":0.020161290322580645}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0273972602739726}},"=":{"docs":{},"\"":{"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"u":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"'":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"development.html":{"ref":"development.html","tf":10.004032258064516}}}}}}},"s":{"docs":{},"c":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}},"\"":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},".":{"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.0004110152075626798}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.008670520231213872}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}},"b":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"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.002890173410404624}}}}}}}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"o":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.017341040462427744}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}}}}}}}},"o":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"database.html":{"ref":"database.html","tf":0.008670520231213872},"crud.html":{"ref":"crud.html","tf":0.002055076037813399},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"advanced.html":{"ref":"advanced.html","tf":0.030303030303030304},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"o":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.022727272727272728},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},"s":{"docs":{},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"u":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}},"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.006622516556291391}}}}}}}}}},"r":{"docs":{},"a":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004110152075626798}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}},"e":{"docs":{},":":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.003372681281618887},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.016129032258064516},"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.0018315018315018315}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"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.002890173410404624}}}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"c":{"docs":{},"h":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833},"associations.html":{"ref":"associations.html","tf":0.007326007326007326},"crud.html":{"ref":"crud.html","tf":0.0036991368680641184},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},".":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"\"":{"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}}}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}}}}}}}},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}},"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.0004110152075626798},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}},"f":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}},"l":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},"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.0004110152075626798}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}},"}":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}}}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.013245033112582781}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.03372681281618887},"associations.html":{"ref":"associations.html","tf":0.005494505494505495},"crud.html":{"ref":"crud.html","tf":0.007398273736128237},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"s":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192}},".":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}},"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.006622516556291391}}},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"n":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.00505902192242833},"crud.html":{"ref":"crud.html","tf":0.0032881216605014385},"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.008064516129032258},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"(":{"docs":{},"*":{"docs":{},"d":{"docs":{},"b":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"d":{"docs":{},"b":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.008431703204047217},"associations.html":{"ref":"associations.html","tf":0.02197802197802198}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":3.333333333333333}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.012626262626262626}}}}}},"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.006622516556291391}},"/":{"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.008670520231213872},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}},"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.346578366445916},"database.html":{"ref":"database.html","tf":0.005780346820809248},"crud.html":{"ref":"crud.html","tf":0.004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"development.html":{"ref":"development.html","tf":0.020161290322580645},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.008431703204047217},"associations.html":{"ref":"associations.html","tf":0.03663003663003663},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"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.006622516556291391},"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}},"docs":{}}}}}}},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"\"":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}},"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.002890173410404624},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}}}}}}}}},"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.0016863406408094434}}}}}}}}}}}}}}}}}}}}}},"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.0008220304151253596}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}}}},":":{"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.0004110152075626798}}}}}}}}}}}}},"\"":{"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.0025252525252525255}}}}},"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.0016863406408094434}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467}}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"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.006622516556291391}}}}}}}}}}}}}}}}}}},"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.006622516556291391}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.006622516556291391}}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"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.002890173410404624},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"v":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"s":{"docs":{},"_":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"_":{"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.006622516556291391},"models.html":{"ref":"models.html","tf":0.01517706576728499},"associations.html":{"ref":"associations.html","tf":0.007326007326007326},"crud.html":{"ref":"crud.html","tf":0.006165228113440197},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}},"=":{"1":{"0":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"1":{"1":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002466091245376079}}}},"docs":{}},"docs":{}},"docs":{}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.031791907514450865},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}},"n":{"docs":{},"c":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"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.006987258528565557},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.02023121387283237},"models.html":{"ref":"models.html","tf":0.006745362563237774}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}},"t":{"6":{"4":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}},"docs":{}},"docs":{"models.html":{"ref":"models.html","tf":0.013490725126475547},"associations.html":{"ref":"associations.html","tf":0.01282051282051282},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},"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.0004110152075626798}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"e":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}},"t":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.004032258064516129}}},"e":{"docs":{},"r":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.002466091245376079}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.006745362563237774},"associations.html":{"ref":"associations.html","tf":0.03296703296703297},"crud.html":{"ref":"crud.html","tf":0.004521167283189478},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"e":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}},"l":{"1":{"2":{"1":{"2":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}}},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004521167283189478}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576},"changelog.html":{"ref":"changelog.html","tf":5.004566210045662}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"advanced.html":{"ref":"advanced.html","tf":0.015151515151515152}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}},"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.003372681281618887},"associations.html":{"ref":"associations.html","tf":0.003663003663003663}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663}}},"}":{"docs":{},")":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005494505494505495}}}}}},"s":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"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.0004110152075626798}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}},"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.006622516556291391}},"(":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"n":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.006745362563237774},"associations.html":{"ref":"associations.html","tf":0.020146520146520148},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},"y":{"2":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}},"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.013245033112582781}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"[":{"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.0004110152075626798}},"{":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}},"k":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"database.html":{"ref":"database.html","tf":0.014450867052023121},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}},"s":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"associations.html":{"ref":"associations.html","tf":0.007326007326007326}},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.014450867052023121},"models.html":{"ref":"models.html","tf":10.008431703204048},"crud.html":{"ref":"crud.html","tf":0.0016440608302507192},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}},"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.002890173410404624},"crud.html":{"ref":"crud.html","tf":0.002466091245376079},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"y":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.008670520231213872}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"l":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"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.006622516556291391},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"models.html":{"ref":"models.html","tf":0.050590219224283306},"associations.html":{"ref":"associations.html","tf":0.02564102564102564},"crud.html":{"ref":"crud.html","tf":0.014385532264693794},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0228310502283105}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"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.0004110152075626798}}}}}}}}}}}}}}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004932182490752158}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},"=":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0036991368680641184}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"development.html":{"ref":"development.html","tf":0.028225806451612902},"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.004032258064516129}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"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.0008220304151253596},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"h":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"w":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0136986301369863}},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}},"o":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.013490725126475547},"associations.html":{"ref":"associations.html","tf":0.009157509157509158},"crud.html":{"ref":"crud.html","tf":0.002055076037813399},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.004032258064516129}},"e":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}},"c":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.013245033112582781}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"crud.html":{"ref":"crud.html","tf":0.009042334566378957},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.008064516129032258}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"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.002890173410404624}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}},"u":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"development.html":{"ref":"development.html","tf":0.004032258064516129},"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.0018315018315018315}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576},"development.html":{"ref":"development.html","tf":0.004032258064516129}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}},"s":{"docs":{},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.008064516129032258}}}},"'":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}},".":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004932182490752158}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.03524229074889868},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"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.006622516556291391}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.011560693641618497}},"e":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}},"s":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}},"s":{"docs":{},"s":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"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.002890173410404624}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}},"i":{"docs":{},"d":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"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.0004110152075626798}}}}},")":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}},")":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"development.html":{"ref":"development.html","tf":0.012096774193548387}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833}}}}},"c":{"docs":{},"k":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"h":{"docs":{"associations.html":{"ref":"associations.html","tf":0.007326007326007326}},"i":{"docs":{},"s":{"docs":{},"m":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"o":{"docs":{},"l":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}},"r":{"docs":{},"e":{"docs":{"development.html":{"ref":"development.html","tf":0.008064516129032258}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"crud.html":{"ref":"crud.html","tf":0.002877106452938759},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},":":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.008431703204047217},"associations.html":{"ref":"associations.html","tf":0.005494505494505495},"crud.html":{"ref":"crud.html","tf":0.006987258528565557},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102}}}}}},"n":{"docs":{},"t":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.039735099337748346},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}},"'":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.03663003663003663},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005494505494505495}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"development.html":{"ref":"development.html","tf":0.008064516129032258}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"development.html":{"ref":"development.html","tf":0.012096774193548387}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"w":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.009042334566378957},"callbacks.html":{"ref":"callbacks.html","tf":0.013215859030837005},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.024193548387096774},"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.0012330456226880395}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"crud.html":{"ref":"crud.html","tf":2.5004110152075625}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"development.html":{"ref":"development.html","tf":0.004032258064516129}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"associations.html":{"ref":"associations.html","tf":0.005494505494505495}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},".":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},".":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.005494505494505495},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}},"o":{"docs":{},"v":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"associations.html":{"ref":"associations.html","tf":0.003663003663003663}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.009042334566378957},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.01011804384485666}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0032881216605014385}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002466091245376079},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.004521167283189478},"callbacks.html":{"ref":"callbacks.html","tf":0.022026431718061675},"advanced.html":{"ref":"advanced.html","tf":0.012626262626262626},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.005494505494505495},"development.html":{"ref":"development.html","tf":0.012096774193548387}}}}}},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.03225806451612903}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576},"development.html":{"ref":"development.html","tf":0.008064516129032258}}}},"a":{"docs":{},"w":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102}}},"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.002055076037813399}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.022026431718061675},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.012096774193548387}},"s":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576},"development.html":{"ref":"development.html","tf":0.004032258064516129}}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}}}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}}}}}},"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.005050505050505051}}}}}}}}}}}}}}},".":{"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.0025252525252525255}}}}}}}}}}}}}},"_":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.002890173410404624}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}},"a":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"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.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},",":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004405286343612335}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.005780346820809248},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.007398273736128237},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"advanced.html":{"ref":"advanced.html","tf":0.015151515151515152},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"i":{"docs":{},"t":{"docs":{},"e":{"3":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248}}},"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.0016863406408094434}}},"docs":{}},"docs":{}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}},"d":{"docs":{},"b":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.015151515151515152}}}}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":3.3399558498896242},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"development.html":{"ref":"development.html","tf":0.008064516129032258}}}},"t":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}},"u":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.026981450252951095},"associations.html":{"ref":"associations.html","tf":0.03663003663003663},"crud.html":{"ref":"crud.html","tf":0.0016440608302507192},"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.02866779089376054},"associations.html":{"ref":"associations.html","tf":0.045787545787545784},"crud.html":{"ref":"crud.html","tf":0.005754212905877518},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.01011804384485666}}}},"p":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}},"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.002890173410404624}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}}}}}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}},"m":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},"p":{"docs":{},"l":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"v":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.004932182490752158},"callbacks.html":{"ref":"callbacks.html","tf":0.02643171806167401}},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.026981450252951095},"crud.html":{"ref":"crud.html","tf":0.010275380189066995},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"associations.html":{"ref":"associations.html","tf":0.007326007326007326},"crud.html":{"ref":"crud.html","tf":0.029182079736950268},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"f":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.013215859030837005}}}}},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"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.0016863406408094434}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"=":{"docs":{},"?":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}}}}},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0016440608302507192},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}}}},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.002055076037813399},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663}},"e":{"docs":{},"'":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}},"i":{"docs":{"associations.html":{"ref":"associations.html","tf":0.01282051282051282},"crud.html":{"ref":"crud.html","tf":0.002877106452938759}}}},"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.002466091245376079}}}},"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.0008220304151253596}}}}}},"_":{"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.006622516556291391}}}}},"o":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}},":":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}},")":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"y":{"docs":{"associations.html":{"ref":"associations.html","tf":0.009157509157509158}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}},"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.0004110152075626798}},"\"":{"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.0008220304151253596}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"callbacks.html":{"ref":"callbacks.html","tf":0.03524229074889868},"advanced.html":{"ref":"advanced.html","tf":0.017676767676767676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},".":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},"s":{"docs":{},",":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},")":{"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.0004110152075626798}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.021922428330522766},"associations.html":{"ref":"associations.html","tf":0.047619047619047616},"crud.html":{"ref":"crud.html","tf":0.002877106452938759},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"database.html":{"ref":"database.html","tf":0.046242774566473986},"models.html":{"ref":"models.html","tf":0.01517706576728499},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.004032258064516129}},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}},"s":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}}}}}}}}},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.00505902192242833},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.01517706576728499},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},".":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"models.html":{"ref":"models.html","tf":0.011804384485666104},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"e":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"}":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"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.00881057268722467}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.005494505494505495},"crud.html":{"ref":"crud.html","tf":0.002055076037813399},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}},"s":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}},"e":{"docs":{},"m":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"n":{"docs":{},",":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}},"x":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.007575757575757576}},".":{"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.004405286343612335}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}}},"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.005050505050505051}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}}}}},"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.007575757575757576}}}}}}}}}}}}}}},"u":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"models.html":{"ref":"models.html","tf":0.008431703204047217},"associations.html":{"ref":"associations.html","tf":0.01098901098901099},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"models.html":{"ref":"models.html","tf":0.003372681281618887}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.008670520231213872}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}},"u":{"docs":{},"s":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002466091245376079}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.013245033112582781},"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.003372681281618887},"crud.html":{"ref":"crud.html","tf":0.02466091245376079},"callbacks.html":{"ref":"callbacks.html","tf":0.022026431718061675},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"=":{"docs":{},"'":{"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}}},"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.0004110152075626798}}}}}}}}}}}}}}}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"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.004032258064516129}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.012096774193548387}}}}}}}}}},"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.004032258064516129}}}}}}},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.006622516556291391}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}}},"s":{"docs":{"models.html":{"ref":"models.html","tf":0.021922428330522766},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.005343197698314837},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"development.html":{"ref":"development.html","tf":0.004032258064516129},"changelog.html":{"ref":"changelog.html","tf":0.0228310502283105}},"e":{"docs":{},"r":{"docs":{"models.html":{"ref":"models.html","tf":0.01011804384485666},"associations.html":{"ref":"associations.html","tf":0.027472527472527472},"crud.html":{"ref":"crud.html","tf":0.03164817098232635},"advanced.html":{"ref":"advanced.html","tf":0.010101010101010102},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}},"=":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}},"'":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.009157509157509158},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}},")":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"i":{"docs":{},"d":{"docs":{"models.html":{"ref":"models.html","tf":0.006745362563237774},"associations.html":{"ref":"associations.html","tf":0.01098901098901099}}}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.002466091245376079}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663}}}}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}},"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.0004110152075626798}},"\"":{"docs":{},")":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004521167283189478}},"\"":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"{":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.004110152075626798}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002877106452938759}}}}}}}},"\"":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"a":{"docs":{},"g":{"docs":{"advanced.html":{"ref":"advanced.html","tf":5.002525252525253}}}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}},"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.006622516556291391},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}},"docs":{}}},"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.002055076037813399},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}},"e":{"docs":{},"'":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}},"l":{"docs":{},"u":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.011508425811755036},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},"e":{"docs":{},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"s":{"docs":{},"(":{"docs":{},"'":{"9":{"9":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"docs":{}},"docs":{}}},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"i":{"docs":{},"d":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}}}}}},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}},"e":{"docs":{},"w":{"docs":{"development.html":{"ref":"development.html","tf":0.008064516129032258}}}}}},"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.006622516556291391}}}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.003372681281618887},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"changelog.html":{"ref":"changelog.html","tf":0.0091324200913242}}}}},"r":{"docs":{},"k":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},",":{"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.006622516556291391},"database.html":{"ref":"database.html","tf":0.011560693641618497},"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":2.5004110152075625},"development.html":{"ref":"development.html","tf":0.012096774193548387}}}}},"a":{"docs":{},"p":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}},"n":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.002877106452938759},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}},"i":{"docs":{},"n":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}},"{":{"docs":{"./":{"ref":"./","tf":0.019867549668874173},"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.02866779089376054},"associations.html":{"ref":"associations.html","tf":0.045787545787545784},"crud.html":{"ref":"crud.html","tf":0.006987258528565557},"callbacks.html":{"ref":"callbacks.html","tf":0.02643171806167401},"advanced.html":{"ref":"advanced.html","tf":0.025252525252525252},"development.html":{"ref":"development.html","tf":0.024193548387096774},"changelog.html":{"ref":"changelog.html","tf":0.0182648401826484}},"}":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"}":{"docs":{"./":{"ref":"./","tf":0.019867549668874173},"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.02866779089376054},"associations.html":{"ref":"associations.html","tf":0.045787545787545784},"crud.html":{"ref":"crud.html","tf":0.006987258528565557},"callbacks.html":{"ref":"callbacks.html","tf":0.02643171806167401},"advanced.html":{"ref":"advanced.html","tf":0.025252525252525252},"development.html":{"ref":"development.html","tf":0.024193548387096774},"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.0004110152075626798}}}}}}}}}}}}}}}}},"&":{"docs":{"associations.html":{"ref":"associations.html","tf":0.01098901098901099},"crud.html":{"ref":"crud.html","tf":0.002055076037813399},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"{":{"docs":{},"}":{"docs":{},")":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"{":{"docs":{},"}":{"docs":{},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}},",":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}},"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.002890173410404624}}},"_":{"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.0016863406408094434}}}}}}}}}}}}}}}}}}},"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.002890173410404624}}}}}}},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}}}}}}}},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624},"models.html":{"ref":"models.html","tf":0.0016863406408094434}},",":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}},"e":{"docs":{},"`":{"docs":{},",":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}},"i":{"docs":{},"d":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}},"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.0016863406408094434}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"database.html":{"ref":"database.html","tf":0.002890173410404624}},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.008670520231213872},"associations.html":{"ref":"associations.html","tf":0.003663003663003663},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"'":{"docs":{"database.html":{"ref":"database.html","tf":0.008670520231213872},"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"s":{"docs":{},"`":{"docs":{"database.html":{"ref":"database.html","tf":0.005780346820809248},"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},"_":{"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.0018315018315018315}}}}}}}}}}}}}}}},"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.003372681281618887}}}}}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887},"callbacks.html":{"ref":"callbacks.html","tf":0.00881057268722467}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}},"s":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}}},"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.0016863406408094434}}}}}},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}}}}}}}}}}}}},"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.0016863406408094434}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},"_":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},":":{"docs":{},"\"":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}},"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.0016863406408094434}}}}}}}}}}}}}}}}}},"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.0016863406408094434}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}}}},"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.0016863406408094434}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}},":":{"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.003372681281618887}}}}}}}}}}}}}}}}}}}}}}},"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.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"models.html":{"ref":"models.html","tf":0.003372681281618887}}}}},"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.003372681281618887},"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663}}}}}}}}}}}}}}}}}}},"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.003663003663003663}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"2":{"5":{"5":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0016863406408094434}}}},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"\"":{"docs":{},"`":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}}}}}}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}}}}}}}}}}}}}}}},"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.003663003663003663}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"`":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.008064516129032258}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"`":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"`":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"`":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}},"*":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},".":{"docs":{},"d":{"docs":{},"b":{"docs":{},"`":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"`":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}}}}}},"_":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"`":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}}},"'":{"1":{"0":{"0":{"docs":{},"'":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}},"docs":{}},"docs":{}},"2":{"0":{"1":{"3":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}}},"docs":{}},"docs":{}},"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}}},"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.0016863406408094434}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}},"'":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}},"\"":{"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.0004110152075626798}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0004110152075626798}}}}}}}}}}}}}}}}}},";":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002055076037813399}}}}}}}}}},"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.0016440608302507192}}}}}}}}}}}}}}}},"s":{"docs":{},"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.0004110152075626798}}}}}}}}}}}}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"t":{"docs":{},"x":{"docs":{},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}}},"*":{"docs":{"associations.html":{"ref":"associations.html","tf":0.007326007326007326},"crud.html":{"ref":"crud.html","tf":0.02548294286888615},"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.002877106452938759},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255},"development.html":{"ref":"development.html","tf":0.008064516129032258},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}},",":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434}}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.002877106452938759},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}},"e":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335},"development.html":{"ref":"development.html","tf":0.004032258064516129},"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.0016863406408094434},"changelog.html":{"ref":"changelog.html","tf":0.0045662100456621}}}}}}}}}},"d":{"docs":{},"b":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"'":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596},"callbacks.html":{"ref":"callbacks.html","tf":0.01762114537444934},"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.0025252525252525255}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.005050505050505051}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"development.html":{"ref":"development.html","tf":0.004032258064516129}}}}}}}}},"+":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"crud.html":{"ref":"crud.html","tf":0.0016440608302507192},"development.html":{"ref":"development.html","tf":0.004032258064516129}}},"[":{"docs":{},"]":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}},"{":{"docs":{},"{":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"models.html":{"ref":"models.html","tf":0.0016863406408094434},"associations.html":{"ref":"associations.html","tf":0.0018315018315018315}},"e":{"docs":{},"{":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}}}}}}}}}}},"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.0018315018315018315}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"associations.html":{"ref":"associations.html","tf":0.003663003663003663}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"6":{"4":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}},"{":{"1":{"1":{"docs":{},",":{"2":{"2":{"docs":{},",":{"3":{"3":{"docs":{},"}":{"docs":{},")":{"docs":{"advanced.html":{"ref":"advanced.html","tf":0.0025252525252525255}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{},"{":{"1":{"0":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}},"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.0004110152075626798}},")":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}},"{":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"i":{"docs":{},"n":{"docs":{},"z":{"docs":{},"h":{"docs":{},"u":{"docs":{},"\"":{"docs":{},",":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0008220304151253596}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395},"advanced.html":{"ref":"advanced.html","tf":0.012626262626262626}}}}},"<":{"docs":{},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0036991368680641184}}}},">":{"docs":{"crud.html":{"ref":"crud.html","tf":0.009042334566378957},"callbacks.html":{"ref":"callbacks.html","tf":0.004405286343612335}},"=":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0012330456226880395}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"crud.html":{"ref":"crud.html","tf":0.0004110152075626798}}}}}},"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.004032258064516129}}}}}}}}}}}}}}}}}}},"length":1931},"corpusTokens":["!=","\"\",","\"\"}","\"%jin%\").find(&users)","\"%jinhu%\";","\"%jinzhu%\")","\"%jinzhu%\").delete(email{})","\"/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\"","\"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)","\"state","\"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\"","\"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';","'super_admin';","'tx'","'user_languages'","(","(\"bill","(\"jinzhu\",","(\"name\")","(\"name\",","(\"non_existing\");","(\"non_existing\",","(\"ship","(\"user_id\",\"language_id\")","('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)","+","...","//","////","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{{email:","[]int64","[]int64{11,22,33})","[]interface{}{&user{},","[]int{10,","[]languag","[]language{{name:","[]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`","`profil","`profile`,","`profileid`","`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(&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","diabl","dialect","dialect,","disabl","doesn't","dog","don't","driver","driver/mysql\"","drivers,","drop","dropcolumn","dynam","each","easier","easily.","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;","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(\"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","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","load","loading)","log","logger","logger,","logic","look","made","main","main()","make","mani","many,","many2many,","map","map)","map,","map[string]interface{}","map[string]interface{}{\"age\":","map[string]interface{}{\"name\":","match","matched,","mdoel'","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","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/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","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,","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;","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:","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\nAuthor\njinzhu\n\nhttp://github.com/jinzhu\nwosmvp@gmail.com\nhttp://twitter.com/zhangjinzhu\n\nContributors\nhttps://github.com/jinzhu/gorm/graphs/contributors\nLicense\nReleased under the MIT License.\n"},"database.html":{"url":"database.html","title":"Database","keywords":"","body":"Database\n\n\nConnecting to a database\nMySQL\nPostgreSQL\nSqlite3\nWrite Dialect for unsupported databases\n\n\nMigration\nAuto Migration\nHas Table\nCreate Table\nDrop table\nModifyColumn\nDropColumn\nAdd Foreign Key\nIndexes\n\n\n\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\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\n\nModel Definition\nConventions\ngorm.Model struct\nTable name is the pluralized version of struct name\nChange default tablenames\nColumn name is the snake case of field's name\nField ID as primary key\nField CreatedAt used to store record's created time\nUse UpdatedAt used to store record's updated time\nUse DeletedAt to store record's deleted time if field exists\n\n\n\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.\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\n\nBelongs To\nHas One\nHas Many\nMany To Many\nPolymorphism\nAssociation Mode\n\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 int\n}\n\nSpecify Foreign Key & Association Key\ntype Profile struct {\n gorm.Model\n Refer string\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 string\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 string\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\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\n\nCreate\nCreate Record\nDefault Values\nSetting Primary Key In Callbacks\nExtra Creating option\n\n\nQuery\nQuery With Where (Plain SQL)\nQuery With Where (Struct & Map)\nQuery With Not\nQuery With Inline Condition\nQuery With Or\nQuery Chains\nExtra Querying option\nFirstOrInit\nAttrs\nAssign\n\n\nFirstOrCreate\nAttrs\nAssign\n\n\nSelect\nOrder\nLimit\nOffset\nCount\nGroup & Having\nJoins\nPluck\nScan\nScopes\nSpecifying The Table Name\n\n\nPreloading (Eager loading)\nCustom Preloading SQL\nNested Preloading\n\n\n\n\nUpdate\nUpdate All Fields\nUpdate Changed Fields\nUpdate Selected Fields\nUpdate Changed Fields Without Callbacks\nBatch Updates\nUpdate with SQL Expression\nChange Updating Values In Callbacks\nExtra Updating option\n\n\nDelete\nBatch Delete\nSoft Delete\n\n\nAssociations\nSkip Save Associations when creating/updating\nSkip Save Associations by Tag\n\n\n\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\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\ndb.First(&user, 23)\n//// SELECT * FROM users WHERE id = 23 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 mdoel'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 \"%jinhu%\";\n\ndb.Delete(Email{}, \"email LIKE ?\", \"%jinzhu%\")\n//// DELETE from emails where email LIKE \"%jinhu%\";\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{{Email: \"jinzhu@example.com\"}, {Email: \"jinzhu-2@example@example.com\"}},\n Languages: []Language{{Name: \"ZH\"}, {Name: \"EN\"}},\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\n\nCreating An Object\nUpdating An Object\nDeleting An Object\nQuerying An Object\nCallback Examples\n\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\n\nError Handling\nTransactions\nA Specific Example\n\n\nSQL Builder\nRun Raw SQL\nsql.Row & sql.Rows\nScan sql.Rows In Iteration\n\n\nGeneric database interface sql.DB\nConnection Pool\n\n\nComposite Primary Key\nLogger\nCustomize Logger\n\n\n\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// Diable 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\n\nArchitecture\nWrite Plugins\nRegister a new callback\nDelete an existing callback\nReplace an existing callback\nRegister callback orders\nPre-Defined Callbacks\n\n\n\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