Sha256: 23933a7fa08ce9559d4ec1a3025b31be61eca43a52949d85563030abebc41dd7
Contents?: true
Size: 390 Bytes
Versions: 12
Compression:
Stored size: 390 Bytes
Contents
class AddCommandLogs < ActiveRecord::Migration def up create_table :command_logs do |t| t.string :command, :null => false t.string :logdir t.datetime :started_at t.datetime :finished_at t.integer :state, :default => 0, :null => false end end def down drop_table :command_logs end end
Version data entries
12 entries across 12 versions & 1 rubygems