Sha256: 3db1a733c0c5d5d0fd668b192b398708daf647b4fd8f7cc5d4edc6d29b3cecd5

Contents?: true

Size: 237 Bytes

Versions: 1

Compression:

Stored size: 237 Bytes

Contents

class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.string :title, null: false
      t.text :body, null: false
      t.string :workflow_state, null: false

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_admin-workflow-0.1.0 spec/dummy/db/migrate/20130817005638_create_posts.rb