Sha256: 5685663e1563d5eacc3f856407eb23f781210209ce6a4822dcb3a794d16f7d87

Contents?: true

Size: 251 Bytes

Versions: 4

Compression:

Stored size: 251 Bytes

Contents

class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.string :title
      t.text :body
      t.integer :creator_id
      t.datetime :published_at
      t.boolean :featured
      t.timestamps
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
activeadmin_associations-0.1.3 spec/dummy/db/migrate/20120504221534_create_posts.rb
aa_associations-0.1.2 test/dummy/db/migrate/20120504221534_create_posts.rb
aa_associations-0.1.1 test/dummy/db/migrate/20120504221534_create_posts.rb
aa_associations-0.1.0 test/dummy/db/migrate/20120504221534_create_posts.rb