mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
9 lines
156 B
Ruby
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
|