Sha256: dc036537601ab2bf23eff2eb881a7ea26b9f8b7fe7d5381dcf80a4ae5c581418

Contents?: true

Size: 225 Bytes

Versions: 4

Compression:

Stored size: 225 Bytes

Contents

class CreatePosts < ActiveRecord::Migration
  def self.up
    create_table :posts do |t|
      t.string :title
      t.text :body

      t.timestamps null: false
    end
  end

  def self.down
    drop_table :posts
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/cocoon-1.2.15/spec/dummy/db/migrate/20110306212208_create_posts.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/cocoon-1.2.15/spec/dummy/db/migrate/20110306212208_create_posts.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/cocoon-1.2.15/spec/dummy/db/migrate/20110306212208_create_posts.rb
cocoon-1.2.15 spec/dummy/db/migrate/20110306212208_create_posts.rb