Sha256: 6052336fdf5d856a25f3a382a7744a6a7baa5b3b43b4e0cbfe712635b196ccab
Contents?: true
Size: 482 Bytes
Versions: 1
Compression:
Stored size: 482 Bytes
Contents
class CreateAttributeCustomizations < ActiveRecord::Migration def change create_table :attribute_customizations do |t| t.string :namespace, null: false t.string :name, null: false t.text :aliases_csv t.date :deprecated_on t.string :display_name t.text :description t.string :instructions t.text :notes t.index [:namespace, :name], unique: true t.timestamps end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
axle_attributes-1.13.2 | db/migrate/20131118042651_create_attribute_customizations.rb |