Velocipede's User, Sales, and Bike Inventory Web App

9 lines
144 B

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