Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

[jobeet] fixed missing unique index on the JobeetAffiliate model class a... #33

Merged
merged 1 commit into from
Jul 8, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jobeet/en/03.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ agnostic, let's create the schema file by hand by editing the empty
id: ~
url: { type: varchar(255), required: true }
email: { type: varchar(255), required: true, index: unique }
token: { type: varchar(255), required: true }
token: { type: varchar(255), required: true, index: unique }
is_active: { type: boolean, required: true, default: 0 }
created_at: ~

Expand Down Expand Up @@ -134,7 +134,7 @@ agnostic, let's create the schema file by hand by editing the empty
columns:
url: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
token: { type: string(255), notnull: true }
token: { type: string(255), notnull: true, unique: true }
is_active: { type: boolean, notnull: true, default: 0 }
relations:
JobeetCategories:
Expand Down
4 changes: 2 additions & 2 deletions jobeet/en/15.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,10 @@ method:
'description' => $this->getDescription(),
'how_to_apply' => $this->getHowToApply(),
<propel>
'expires_at' => $this->getCreatedAt('c'),
'expires_at' => $this->getExpiresAt('c'),
</propel>
<doctrine>
'expires_at' => $this->getCreatedAt(),
'expires_at' => $this->getExpiresAt(),
</doctrine>
);
}
Expand Down
4 changes: 2 additions & 2 deletions jobeet/es/03.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Como la base de datos no existe todavía, y como queremos mantener la base de da
id: ~
url: { type: varchar(255), required: true }
email: { type: varchar(255), required: true, index: unique }
token: { type: varchar(255), required: true }
token: { type: varchar(255), required: true, index: unique }
is_active: { type: boolean, required: true, default: 0 }
created_at: ~

Expand Down Expand Up @@ -114,7 +114,7 @@ Como la base de datos no existe todavía, y como queremos mantener la base de da
columns:
url: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
token: { type: string(255), notnull: true }
token: { type: string(255), notnull: true, unique: true }
is_active: { type: boolean, notnull: true, default: 0 }
relations:
JobeetCategories:
Expand Down
4 changes: 2 additions & 2 deletions jobeet/es/15.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ En lugar de pasar un array de objetos `JobeetJob` a las plantillas, se pasa un a
'description' => $this->getDescription(),
'how_to_apply' => $this->getHowToApply(),
<propel>
'expires_at' => $this->getCreatedAt('c'),
'expires_at' => $this->getExpiresAt('c'),
</propel>
<doctrine>
'expires_at' => $this->getCreatedAt(),
'expires_at' => $this->getExpiresAt(),
</doctrine>
);
}
Expand Down
4 changes: 2 additions & 2 deletions jobeet/fr/03.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ la base de données Jobeet, nous allons créer le fichier du schéma à la main
id: ~
url: { type: varchar(255), required: true }
email: { type: varchar(255), required: true, index: unique }
token: { type: varchar(255), required: true }
token: { type: varchar(255), required: true, index: unique }
is_active: { type: boolean, required: true, default: 0 }
created_at: ~

Expand Down Expand Up @@ -134,7 +134,7 @@ la base de données Jobeet, nous allons créer le fichier du schéma à la main
columns:
url: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
token: { type: string(255), notnull: true }
token: { type: string(255), notnull: true, unique: true }
is_active: { type: boolean, notnull: true, default: 0 }
relations:
JobeetCategories:
Expand Down
4 changes: 2 additions & 2 deletions jobeet/fr/15.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,10 @@ la logique pour traiter les valeurs a été refactorisée dans la méthode
'description' => $this->getDescription(),
'how_to_apply' => $this->getHowToApply(),
<propel>
'expires_at' => $this->getCreatedAt('c'),
'expires_at' => $this->getExpiresAt('c'),
</propel>
<doctrine>
'expires_at' => $this->getCreatedAt(),
'expires_at' => $this->getExpiresAt(),
</doctrine>
);
}
Expand Down
4 changes: 2 additions & 2 deletions jobeet/it/03.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ di esso (come realizzarlo), creeremo lo schema a mano modificando un file vuoto
id: ~
url: { type: varchar(255), required: true }
email: { type: varchar(255), required: true, index: unique }
token: { type: varchar(255), required: true }
token: { type: varchar(255), required: true, index: unique }
is_active: { type: boolean, required: true, default: 0 }
created_at: ~

Expand Down Expand Up @@ -136,7 +136,7 @@ di esso (come realizzarlo), creeremo lo schema a mano modificando un file vuoto
columns:
url: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
token: { type: string(255), notnull: true }
token: { type: string(255), notnull: true, unique: true }
is_active: { type: boolean, notnull: true, default: 0 }
relations:
JobeetCategories:
Expand Down
4 changes: 2 additions & 2 deletions jobeet/it/15.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ la logica di processare i valori è stata spostata fuori nel metodo `JobeetJob::
'description' => $this->getDescription(),
'how_to_apply' => $this->getHowToApply(),
<propel>
'expires_at' => $this->getCreatedAt('c'),
'expires_at' => $this->getExpiresAt('c'),
</propel>
<doctrine>
'expires_at' => $this->getCreatedAt(),
'expires_at' => $this->getExpiresAt(),
</doctrine>
);
}
Expand Down
4 changes: 2 additions & 2 deletions jobeet/ja/03.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ORM には、関連するクラスを生成するために、テーブルとリ
id: ~
url: { type: varchar(255), required: true }
email: { type: varchar(255), required: true, index: unique }
token: { type: varchar(255), required: true }
token: { type: varchar(255), required: true, index: unique }
is_active: { type: boolean, required: true, default: 0 }
created_at: ~

Expand Down Expand Up @@ -107,7 +107,7 @@ ORM には、関連するクラスを生成するために、テーブルとリ
columns:
url: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
token: { type: string(255), notnull: true }
token: { type: string(255), notnull: true, unique: true }
is_active: { type: boolean, notnull: true, default: 0 }
relations:
JobeetCategories:
Expand Down
4 changes: 2 additions & 2 deletions jobeet/ja/15.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,10 @@ Jobeet のフィード追加に関して、求職者はリアルタイムで新
'description' => $this->getDescription(),
'how_to_apply' => $this->getHowToApply(),
<propel>
'expires_at' => $this->getCreatedAt('c'),
'expires_at' => $this->getExpiresAt('c'),
</propel>
<doctrine>
'expires_at' => $this->getCreatedAt(),
'expires_at' => $this->getExpiresAt(),
</doctrine>
);
}
Expand Down
4 changes: 2 additions & 2 deletions jobeet/pt_BR/03.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Como o banco de dados não existe ainda e queremos manter o banco de dados do Jo
id: ~
url: { type: varchar(255), required: true }
email: { type: varchar(255), required: true, index: unique }
token: { type: varchar(255), required: true }
token: { type: varchar(255), required: true, index: unique }
is_active: { type: boolean, required: true, default: 0 }
created_at: ~

Expand Down Expand Up @@ -110,7 +110,7 @@ Como o banco de dados não existe ainda e queremos manter o banco de dados do Jo
columns:
url: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
token: { type: string(255), notnull: true }
token: { type: string(255), notnull: true, unique: true }
is_active: { type: boolean, notnull: true, default: 0 }
relations:
JobeetCategories:
Expand Down
4 changes: 2 additions & 2 deletions jobeet/ru/03.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ ORM потребует от вас описания таблиц и связей
id: ~
url: { type: varchar(255), required: true }
email: { type: varchar(255), required: true, index: unique }
token: { type: varchar(255), required: true }
token: { type: varchar(255), required: true, index: unique }
is_active: { type: boolean, required: true, default: 0 }
created_at: ~

Expand Down Expand Up @@ -136,7 +136,7 @@ ORM потребует от вас описания таблиц и связей
columns:
url: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
token: { type: string(255), notnull: true }
token: { type: string(255), notnull: true, unique: true }
is_active: { type: boolean, notnull: true, default: 0 }
relations:
JobeetCategories:
Expand Down
4 changes: 2 additions & 2 deletions jobeet/ru/15.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -325,10 +325,10 @@ URL в начале:
'description' => $this->getDescription(),
'how_to_apply' => $this->getHowToApply(),
<propel>
'expires_at' => $this->getCreatedAt('c'),
'expires_at' => $this->getExpiresAt('c'),
</propel>
<doctrine>
'expires_at' => $this->getCreatedAt(),
'expires_at' => $this->getExpiresAt(),
</doctrine>
);
}
Expand Down