createTable('webmoney_orders', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'tm_create' => $this->timestamp()->defaultExpression('NOW()'), 'sum' => $this->string(), 'status' => $this->smallInteger()->defaultValue(0) ]); } /** * @inheritdoc */ public function down() { $this->dropTable('webmoney_orders'); } }