1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
BikeShed-1/db/migrate/20121229160809_create_user_roles.rb
2012-12-29 16:22:24 -05:00

9 lines
156 B
Ruby

class CreateUserRoles < ActiveRecord::Migration
def change
create_table(:user_roles) do |t|
t.string :role
t.timestamps
end
end
end