createTable( 'call', [ 'id' => $this->primaryKey(), 'company' => $this->string() ->notNull(), 'calldate' => 'timestamp NOT NULL', 'callerid' => $this->string() ->notNull(), 'line' => $this->string(), 'operator' => $this->string(), 'status' => $this->string() ->notNull(), 'queue' => $this->string(), 'duration' => $this->integer() ->notNull(), 'billsec' => $this->integer() ->notNull(), 'record' => $this->string(), ] ); } /** * @inheritdoc */ public function safeDown() { $this->dropTable('call'); } }