Compare commits

..

2 Commits

Author SHA1 Message Date
Dzmitry Plashchynski
a7488df85b Bump v1.1.2 2016-12-02 03:42:32 +02:00
Dzmitry Plashchynski
c777933044 Fix PG text limit. Closes #54 2016-12-02 03:41:38 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
PATH
remote: .
specs:
crono (1.1.1)
crono (1.1.2)
activerecord (>= 4.0)
activesupport (>= 4.0)

View File

@@ -1,3 +1,3 @@
module Crono
VERSION = '1.1.1'
VERSION = '1.1.2'
end

View File

@@ -2,7 +2,7 @@ class CreateCronoJobs < ActiveRecord::Migration
def self.up
create_table :crono_jobs do |t|
t.string :job_id, null: false
t.text :log, limit: 4294967295 # LONGTEXT for MySQL
t.text :log, limit: 1073741823 # LONGTEXT for MySQL
t.datetime :last_performed_at
t.boolean :healthy
t.timestamps null: false