Sha256: f4efd90547d97b36a88933e2799379ec41a85232fc8bfde34f30556fdc61a3d9

Contents?: true

Size: 311 Bytes

Versions: 20

Compression:

Stored size: 311 Bytes

Contents

require 'rubygems'
require 'sequel/extensions/migration'

Class.new( Sequel::Migration ) do

    def up
        alter_table :command_logs do
            add_column :logdir, String
        end
    end

    def down
        alter_table :command_logs do
            remove_column :logdir
        end
    end

end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
build-tool-0.5.7 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.5.6 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.5.5 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.5.4 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.5.3 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.5.2 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.4.6 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.5.1 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.4.5 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.5.0 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.4.4 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.4.3 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.4.2 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.4.1 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.4.0 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.3.3 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.3.2 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.3.1 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.3 db/migrations/003_command_histories_add_logfile.rb
build-tool-0.2 db/migrations/003_command_histories_add_logfile.rb