Sha256: 11e6511e1b0e17d3fe6caf53c8f2ef2a3a48f4f8ac4de802aa711125e850b4a1
Contents?: true
Size: 326 Bytes
Versions: 28
Compression:
Stored size: 326 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def change create_table :posts do |t| t.references :tenant t.references :author t.references :zine t.string :content t.timestamps end add_index :posts, :tenant_id add_index :posts, :author_id add_index :posts, :zine_id end end
Version data entries
28 entries across 28 versions & 1 rubygems