<?php

use Phalcon\Mvc\Model\Migration;

class LogQuotaErrorsMigration_251 extends Migration
{
    public function up()
    {
        self::$connection->execute('
            CREATE TABLE IF NOT EXISTS "jaga"."log_quota_errors" (
                id SERIAL PRIMARY KEY,
                user_id INTEGER,               
                created_at timestamp without time zone DEFAULT now() NOT NULL
            );           
        ');
    }
}
