createTable('phone_request', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer()->defaultValue(null), 'tm' => $this->dateTime()->defaultExpression('NOW()'), 'ip' => $this->string(), 'data' => $this->text(), 'wallet' => $this->string(), 'contact' => $this->string(), 'status' => $this->smallInteger()->defaultValue(0) ]); } /** * @inheritdoc */ public function down() { $this->dropTable('phone_request'); } }