まとめてみます。
データベースの定義
使用したデータベースは、SQLite3
です。
<?php <省略> Schema::connection($this->dbName)->create($tableName, function (Blueprint $table) { $table->increments('id'); $table->string('hatena_id')->nullable(); $table->string('nickname')->nullable(); $table->timestamp('datetime_utc')->nullable(); // 読者になっていただいた日(標準時) $table->boolean('my_reader')->default(true); // 読者様ならtrue });