Sha256: 964a4c2a07c09c4180385040ad5263b98c2983d536762e51d2a0056495102ba8
Contents?: true
Size: 340 Bytes
Versions: 1
Compression:
Stored size: 340 Bytes
Contents
class CreateBundles < ActiveRecord::Migration[4.2] def change create_table :bundles do |t| t.string :title t.text :description t.string :code t.references :commission, index: true, foreign_key: true t.timestamps null: false end add_index :bundles, :title add_index :bundles, :code end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mobilart_models-1.2.14 | db/migrate/20150825180510_create_bundles.rb |