@ -0,0 +1,34 @@ | |||||
<?php | |||||
use Illuminate\Support\Facades\Schema; | |||||
use Illuminate\Database\Schema\Blueprint; | |||||
use Illuminate\Database\Migrations\Migration; | |||||
class TweetGeo extends Migration | |||||
{ | |||||
/** | |||||
* Run the migrations. | |||||
* | |||||
* @return void | |||||
*/ | |||||
public function up() | |||||
{ | |||||
Schema::table('tweets', function (Blueprint $table) { | |||||
$table->text('geo')->nullable(); | |||||
$table->text('place')->nullable(); | |||||
}); | |||||
} | |||||
/** | |||||
* Reverse the migrations. | |||||
* | |||||
* @return void | |||||
*/ | |||||
public function down() | |||||
{ | |||||
Schema::table('tweets', function (Blueprint $table) { | |||||
$table->dropColumn('geo'); | |||||
$table->dropColumn('place'); | |||||
}); | |||||
} | |||||
} |