createTable('auth', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'source' => $this->string(), 'source_id' => $this->string() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('auth'); } }