mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-01 01:03:23 -05:00
9 lines
144 B
Ruby
9 lines
144 B
Ruby
class AddRoles < ActiveRecord::Migration
|
|
def change
|
|
create_table(:roles) do |t|
|
|
t.string :role
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|