Sha256: 9c99b0689ff13f2524d51e43efe133b05aa4e612348f3f1c8ce72d57f354a95d

Contents?: true

Size: 627 Bytes

Versions: 26

Compression:

Stored size: 627 Bytes

Contents

class CreateWritefullyPosts < ActiveRecord::Migration
  def change
    create_table :writefully_posts do |t|
      t.string     :title
      t.string     :slug
      t.string     :type
      t.text       :content
      t.hstore     :details
      t.datetime   :published_at
      t.integer    :position
      t.string     :locale, default: 'en'
      t.integer    :translation_source_id
      t.references :site,       index: true
      t.references :authorship, index: true

      t.timestamps
    end
    
    add_index :writefully_posts, :slug, unique: true
    add_index :writefully_posts, :translation_source_id
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
writefully-0.8.2 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.8.1 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.8.0 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.7.1 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.12 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.11 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.10 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.9 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.7 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.6 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.5 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.4 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.3 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.6.2 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.5.1 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.5.0 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.4.10 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.4.8 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.4.7 db/migrate/20140402091204_create_writefully_posts.rb
writefully-0.4.6 db/migrate/20140402091204_create_writefully_posts.rb