diff --git a/database/migrations/2022_02_08_001417_create_recipes_table.php b/database/migrations/2022_02_08_001417_create_recipes_table.php
index 07ca321..0289167 100644
--- a/database/migrations/2022_02_08_001417_create_recipes_table.php
+++ b/database/migrations/2022_02_08_001417_create_recipes_table.php
@@ -16,13 +16,15 @@ class CreateRecipesTable extends Migration
         Schema::create('recipes', function (Blueprint $table) {
             $table->id();
             $table->string('name');
+            $table->unsignedInteger('maintainer');
             $table->string('author');
             $table->unsignedInteger('servings');
             $table->datetime('date_entered');
             $table->datetime('date_modified');
             $table->longtext('instructions');
-
             $table->timestamps();
+
+            $table->foreign('maintainer')->references('id')->on('users');
         });
     }
 
diff --git a/database/migrations/2022_02_08_003527_create_recipe_ingredient_table.php b/database/migrations/2022_02_08_003527_create_recipe_ingredient_table.php
index c499f4d..ba5dc31 100644
--- a/database/migrations/2022_02_08_003527_create_recipe_ingredient_table.php
+++ b/database/migrations/2022_02_08_003527_create_recipe_ingredient_table.php
@@ -18,7 +18,7 @@ class CreateRecipeIngredientTable extends Migration
             $table->unsignedInteger('recipe_id');
             $table->unsignedInteger('ingredient_id');
             $table->string('name');
-            $table->unsignedInteger('quantity');
+            $table->float('quantity');
             $table->string('measurement');
             $table->longText('special_notes');
             $table->timestamps();