Created
April 22, 2018 16:46
-
-
Save brandongallardoa/7a35ac7120106d100dc4973cf30b41b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //... se omiten los namespaces por brevedad | |
| class CreateFollowersTable extends Migration | |
| { | |
| public function up() | |
| { | |
| Schema::create('followers', function (Blueprint $table) { | |
| $table->increments('id'); | |
| $table->integer('follower_id')->unsigned(); | |
| $table->foreign('follower_id')->references('id')->on('users')->onUpdate('cascade')->onDelete('cascade'); | |
| $table->integer('user_id')->unsigned(); | |
| $table->foreign('user_id')->references('id')->on('users')->onUpdate('cascade')->onDelete('cascade'); | |
| $table->timestamps(); | |
| }); | |
| } | |
| //... Se omite el metodo down por brevedad | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment