| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use Illuminate\Database\Schema\Blueprint; | 
					
						
							|  |  |  | use Illuminate\Database\Migrations\Migration; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CreateActivitiesTable extends Migration | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Run the migrations. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function up() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Schema::create('activities', function (Blueprint $table) { | 
					
						
							|  |  |  |             $table->increments('id'); | 
					
						
							|  |  |  |             $table->string('key'); | 
					
						
							|  |  |  |             $table->text('extra'); | 
					
						
							|  |  |  |             $table->integer('book_id')->indexed(); | 
					
						
							|  |  |  |             $table->integer('user_id'); | 
					
						
							|  |  |  |             $table->integer('entity_id'); | 
					
						
							|  |  |  |             $table->string('entity_type'); | 
					
						
							| 
									
										
										
										
											2016-02-17 05:25:11 +08:00
										 |  |  |             $table->nullableTimestamps(); | 
					
						
							| 
									
										
										
										
											2015-08-17 01:59:23 +08:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Reverse the migrations. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function down() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Schema::drop('activities'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |