소스 검색

Add HashtagFollow model, migration and controller

Daniel Supernault 6 년 전
부모
커밋
d07c3deb86
3개의 변경된 파일55개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      app/HashtagFollow.php
  2. 10 0
      app/Http/Controllers/HashtagFollowController.php
  3. 35 0
      database/migrations/2019_07_05_034644_create_hashtag_follows_table.php

+ 10 - 0
app/HashtagFollow.php

@@ -0,0 +1,10 @@
+<?php
+
+namespace App;
+
+use Illuminate\Database\Eloquent\Model;
+
+class HashtagFollow extends Model
+{
+    //
+}

+ 10 - 0
app/Http/Controllers/HashtagFollowController.php

@@ -0,0 +1,10 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use Illuminate\Http\Request;
+
+class HashtagFollowController extends Controller
+{
+    //
+}

+ 35 - 0
database/migrations/2019_07_05_034644_create_hashtag_follows_table.php

@@ -0,0 +1,35 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class CreateHashtagFollowsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::create('hashtag_follows', function (Blueprint $table) {
+            $table->bigIncrements('id');
+            $table->bigInteger('user_id')->unsigned()->index();
+            $table->bigInteger('profile_id')->unsigned()->index();
+            $table->bigInteger('hashtag_id')->unsigned()->index();
+            $table->unique(['user_id', 'profile_id', 'hashtag_id']);
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('hashtag_follows');
+    }
+}