Use sqlite3 file database

This commit is contained in:
Dzmitry Plashchynski
2015-03-07 18:03:50 +02:00
parent b4d15f7909
commit 00e51604ae
4 changed files with 7 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ class CreateCronoJobs < ActiveRecord::Migration
t.string :job_id, null: false
t.text :log
t.datetime :last_performed_at
t.timestamps
t.timestamps null: false
end
add_index :crono_jobs, [:job_id], unique: true
end