class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :content
      t.timestamps
    end
  end
end