Browse Source

Revert "Docu on how to ensure foreign() works"

This reverts commit b92f5bc854267fedf918f1923a4b7d2d1192bfba.
Tobsn 12 years ago
parent
commit
546c962612
1 changed files with 1 additions and 7 deletions
  1. 1 7
      laravel/documentation/database/schema.md

+ 1 - 7
laravel/documentation/database/schema.md

@@ -144,10 +144,4 @@ You may also specify options for the "on delete" and "on update" actions of the
 
 
 You may also easily drop a foreign key constraint. The default foreign key names follow the [same convention](#dropping-indexes) as the other indexes created by the Schema builder. Here's an example:
 You may also easily drop a foreign key constraint. The default foreign key names follow the [same convention](#dropping-indexes) as the other indexes created by the Schema builder. Here's an example:
 
 
-	$table->drop_foreign('posts_user_id_foreign');
-
-> **Note:** The field referenced in the foreign key is very likely an auto increment and therefore automatically an unsigned integer. Please make sure to create the foreign key field with **unsigned()** as both fields have to be the exact same type, the engine on both tables has to be set to **InnoDB**, and the referenced table must be created **before** the table with the foreign key.
-
-	$table->engine = 'InnoDB';
-
-	$table->integer('user_id')->unsigned();
+	$table->drop_foreign('posts_user_id_foreign');