Sha256: 6a1aceab6fab1930fad9765b42304acca1beac2fac93a75a1e70fe06aeb66904
Contents?: true
Size: 342 Bytes
Versions: 2
Compression:
Stored size: 342 Bytes
Contents
class CreateTableGlStatusConfiguration < ActiveRecord::Migration def up create_table :gl_status_configurations do |t| t.string :context t.string :result t.timestamps end add_index :gl_status_configurations, :context, :name => "context_idx" end def down drop_table :gl_status_configurations end end
Version data entries
2 entries across 1 versions & 1 rubygems