summaryrefslogtreecommitdiff
path: root/db/migrate/20140304014720_create_users.rb
blob: 163109f7425f0842cc30d3a1e79e0e727ee2daa5 (plain)
1
2
3
4
5
6
7
8
class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|

      t.timestamps
    end
  end
end