Sha256: c63fcd540406e59f9097088b636ba550c06836916ee51805e25ccde60988bfcc
Contents?: true
Size: 278 Bytes
Versions: 27
Compression:
Stored size: 278 Bytes
Contents
class CreateTodos < ActiveRecord::Migration def change create_table :todos do |t| t.string :description t.belongs_to :model_with_todos, polymorphic: true end add_index :todos, :model_with_todos_id add_index :todos, :model_with_todos_type end end
Version data entries
27 entries across 27 versions & 1 rubygems