Sha256: 96f21ec09221aad587aa4d9334602c2b14fde319bcca83bc74a6482655b21dd0
Contents?: true
Size: 340 Bytes
Versions: 4
Compression:
Stored size: 340 Bytes
Contents
class CreateSequential < ActiveRecord::Migration def change create_table(:sequential) do |t| t.string :model t.string :column t.string :scope t.string :scope_value t.integer :value t.timestamps end add_index :sequential, [:model, :column, :scope, :scope_value], unique: true end end
Version data entries
4 entries across 2 versions & 1 rubygems