Sha256: 37f5b98477dea051144b8dd0c5dcbbc75e980bce1dba5a0af385cb956f5b5dab

Contents?: true

Size: 234 Bytes

Versions: 2

Compression:

Stored size: 234 Bytes

Contents

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

      t.timestamps
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rs-active_admin-state_machine-0.2.1 spec/dummy/db/migrate/20130817005638_create_posts.rb
rs-active_admin-state_machine-0.2.0 spec/dummy/db/migrate/20130817005638_create_posts.rb