Skip to content

Instantly share code, notes, and snippets.

@briedis
Created January 3, 2015 18:49
Show Gist options
  • Save briedis/57612abce4c4ad69cd77 to your computer and use it in GitHub Desktop.
Save briedis/57612abce4c4ad69cd77 to your computer and use it in GitHub Desktop.
class AddDescriptionToRadars extends Migration{
public function up(){
Schema::table('radars', function (Blueprint $table){
$table->text('description')->nullable();
});
}
public function down(){
Schema::table('radars', function (Blueprint $table){
$table->dropColumn('description');
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment