rosa-build/db/migrate/20111012223306_create_roles.rb

10 lines
147 B
Ruby
Raw Permalink Normal View History

class CreateRoles < ActiveRecord::Migration
2014-08-20 21:25:09 +01:00
def change
create_table :roles do |t|
t.string :name
t.timestamps
end
end
end