Skip to content

Instantly share code, notes, and snippets.

@sshono1210
sshono1210 / addColumn.txt
Last active November 11, 2016 04:27
Laravel 5.3 - Basic Task List
public function up() {
Schema::create(‘tasks’, function(Blueprint $table){
$table->increments(‘id’);
$table->string(‘name’); // 追加
$table->timestamps();
});
}