Sha256: 39e2ee50397b517d07d85c1ab56ecb5e49ffcb8ee82aba7aa3d49bb1fe239efc
Contents?: true
Size: 326 Bytes
Versions: 22
Compression:
Stored size: 326 Bytes
Contents
# frozen_string_literal: true class CreateScheduledTasks < ( Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2] ) def change create_table :scheduled_tasks do |t| t.string :scheduling t.string :task t.datetime :next_run t.timestamps null: false end end end
Version data entries
22 entries across 22 versions & 1 rubygems