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