From d517ce1d992c3d80098f03cc0fda372a09ef00ca Mon Sep 17 00:00:00 2001 From: scil Date: Sun, 28 Jun 2015 19:56:39 +0800 Subject: [PATCH] add filed 'user_id' --- .../2014_05_03_142000_create_content_areas_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/migrations/2014_05_03_142000_create_content_areas_table.php b/src/migrations/2014_05_03_142000_create_content_areas_table.php index a7581a4..1c51836 100755 --- a/src/migrations/2014_05_03_142000_create_content_areas_table.php +++ b/src/migrations/2014_05_03_142000_create_content_areas_table.php @@ -15,7 +15,7 @@ public function up() Schema::create('content_areas', function(Blueprint $table) { $table->increments('id'); - + $table->integer('user_id'); $table->string('title'); $table->string('content_type', 8); $table->text('content'); @@ -35,4 +35,4 @@ public function down() Schema::drop('content_areas'); } -} \ No newline at end of file +}