Sha256: 2a9a23691caac89ad2909283919aaf06ac4da310733f05bb109f229024ebc53f

Contents?: true

Size: 436 Bytes

Versions: 5

Compression:

Stored size: 436 Bytes

Contents

class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.string :title
      t.string :slug
      t.references :author
      t.string :story_link
      t.boolean :draft
      t.datetime :published_at
      t.text :body

      t.timestamps
    end
    add_index :posts, :author_id
    add_index :posts, :published_at
    add_index :posts, :draft
    add_index :posts, :slug, unique: true
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
engrave-1.0.0 db/migrate/20120524024050_create_posts.rb
engrave-0.0.5 db/migrate/20120524024050_create_posts.rb
engrave-0.0.4 db/migrate/20120524024050_create_posts.rb
engrave-0.0.3 db/migrate/20120524024050_create_posts.rb
engrave-0.0.2 db/migrate/20120524024050_create_posts.rb