Sha256: 89a2d4845b577535dc9715f8dde5a7ed0d24dcfa787465a66694a8a0df624e30
Contents?: true
Size: 488 Bytes
Versions: 5
Compression:
Stored size: 488 Bytes
Contents
class CreateMonologuePostsRevisions < ActiveRecord::Migration def change create_table :monologue_posts_revisions do |t| t.string :title t.text :content t.string :url t.integer :user_id t.integer :post_id t.datetime :published_at t.timestamps end add_index :monologue_posts_revisions, :id, :unique => true add_index :monologue_posts_revisions, :published_at add_index :monologue_posts_revisions, :post_id end end
Version data entries
5 entries across 5 versions & 1 rubygems