createTable('calls', [ 'id' => $this->primaryKey(), 'tm' => $this->timestamp(), 'cuid' => $this->string(), 'duration' => $this->integer(), 'status' => $this->string(), 'phone' => $this->bigInteger() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('calls'); } }