string('id')->primary(); $table->integer('user_id'); $table->text('body'); $table->string('action_text')->nullable(); $table->text('action_url')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('announcements'); } }